relatedness
Pack: conceptnet · Endpoint: https://gateway.pipeworx.io/conceptnet/mcp
Semantic-relatedness score (0..1) between two terms.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
node1 | string | yes | First term or /c/en/ |
node2 | string | yes | Second term or /c/en/ |
lang | string | no | Default lang for plain-text terms (default en) |
Example call
curl -X POST https://gateway.pipeworx.io/conceptnet/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"relatedness","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
relatedness | number | Relatedness score (0..1) |
node1 | string | First node URI |
node2 | string | Second node URI |
Full JSON Schema
{
"type": "object",
"description": "Semantic relatedness score between two terms",
"properties": {
"relatedness": {
"type": "number",
"description": "Relatedness score (0..1)"
},
"node1": {
"type": "string",
"description": "First node URI"
},
"node2": {
"type": "string",
"description": "Second node URI"
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"conceptnet": {
"url": "https://gateway.pipeworx.io/conceptnet/mcp"
}
}
}
See Getting Started for client-specific install steps.