affiliation

Pack: ror · Endpoint: https://gateway.pipeworx.io/ror/mcp

Fuzzy affiliation-string match. Returns candidates with confidence scores.

Parameters

NameTypeRequiredDescription
textstringyes

Example call

Arguments

{
  "text": "Department of Computer Science, MIT, Cambridge, MA"
}

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":"affiliation","arguments":{"text":"Department of Computer Science, MIT, Cambridge, MA"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('affiliation', {
  "text": "Department of Computer Science, MIT, Cambridge, MA"
});

More examples

{
  "text": "University of Oxford, UK"
}

Response shape

FieldTypeDescription
number_of_resultsnumberTotal number of matching candidates
itemsarrayMatching organizations ranked by confidence
time_takennumberAPI response time in milliseconds
Full JSON Schema
{
  "type": "object",
  "description": "Fuzzy affiliation matching results with confidence scores",
  "properties": {
    "number_of_results": {
      "type": "number",
      "description": "Total number of matching candidates"
    },
    "items": {
      "type": "array",
      "description": "Matching organizations ranked by confidence",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "ROR organization ID (URL)"
          },
          "name": {
            "type": "string",
            "description": "Organization name"
          },
          "score": {
            "type": "number",
            "description": "Confidence score (0-1)"
          },
          "types": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "country": {
            "type": "object",
            "properties": {
              "country_name": {
                "type": "string"
              },
              "country_code": {
                "type": "string"
              }
            }
          }
        }
      }
    },
    "time_taken": {
      "type": "number",
      "description": "API response time in milliseconds"
    }
  }
}

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.

Regenerated from source · build July 6, 2026