get
Pack: ror · Endpoint: https://gateway.pipeworx.io/ror/mcp
Full ROR record. Accepts the trailing identifier (e.g. “03vek6s52”) or the full URL.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
ror_id | string | yes |
Example call
Arguments
{
"ror_id": "03vek6s52"
}
curl
curl -X POST https://gateway.pipeworx.io/ror/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get","arguments":{"ror_id":"03vek6s52"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get', {
"ror_id": "03vek6s52"
});
More examples
{
"ror_id": "https://ror.org/03vek6s52"
}
Response shape
| Field | Type | Description |
|---|---|---|
id | string | ROR organization ID (URL) |
name | string | Organization name |
email_address | string | null | Organization email address if available |
ip_addresses | array | Associated IP address ranges |
established | number | null | Year the organization was established |
types | array | Organization types |
relationships | array | Related organizations |
links | array | External links |
aliases | array | Alternative names |
acronyms | array | Organization acronyms |
country | object | |
addresses | array | Organization addresses |
Full JSON Schema
{
"type": "object",
"description": "Full ROR organization record",
"properties": {
"id": {
"type": "string",
"description": "ROR organization ID (URL)"
},
"name": {
"type": "string",
"description": "Organization name"
},
"email_address": {
"type": [
"string",
"null"
],
"description": "Organization email address if available"
},
"ip_addresses": {
"type": "array",
"description": "Associated IP address ranges",
"items": {
"type": "string"
}
},
"established": {
"type": [
"number",
"null"
],
"description": "Year the organization was established"
},
"types": {
"type": "array",
"description": "Organization types",
"items": {
"type": "string"
}
},
"relationships": {
"type": "array",
"description": "Related organizations",
"items": {
"type": "object"
}
},
"links": {
"type": "array",
"description": "External links",
"items": {
"type": "object"
}
},
"aliases": {
"type": "array",
"description": "Alternative names",
"items": {
"type": "string"
}
},
"acronyms": {
"type": "array",
"description": "Organization acronyms",
"items": {
"type": "string"
}
},
"country": {
"type": "object",
"properties": {
"country_name": {
"type": "string"
},
"country_code": {
"type": "string"
}
}
},
"addresses": {
"type": "array",
"description": "Organization addresses",
"items": {
"type": "object"
}
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"ror": {
"url": "https://gateway.pipeworx.io/ror/mcp"
}
}
}
See Getting Started for client-specific install steps.