lookup
Pack: conceptnet · Endpoint: https://gateway.pipeworx.io/conceptnet/mcp
All edges touching a term in a language.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
term | string | yes | Word or phrase |
lang | string | no | ISO-639-1 code (default en) |
limit | number | no | 1-1000 (default 50) |
offset | number | no | 0-based offset |
only_rel | string | no | Restrict to one relation (e.g. “IsA”, “UsedFor”) |
end_node_lang | string | no | Restrict end-node language |
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":"lookup","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
@context | array | JSON-LD context |
@id | string | Node URI |
edges | array | List of edges involving this node |
view | string | API view name |
Full JSON Schema
{
"type": "object",
"description": "All edges touching a term in a language",
"properties": {
"@context": {
"type": "array",
"description": "JSON-LD context"
},
"@id": {
"type": "string",
"description": "Node URI"
},
"edges": {
"type": "array",
"description": "List of edges involving this node",
"items": {
"type": "object",
"properties": {
"@id": {
"type": "string",
"description": "Edge URI"
},
"rel": {
"type": "object",
"description": "Relation object"
},
"start": {
"type": "object",
"description": "Start node object"
},
"end": {
"type": "object",
"description": "End node object"
},
"sources": {
"type": "array",
"description": "Source datasets"
},
"weight": {
"type": "number",
"description": "Edge weight"
}
}
}
},
"view": {
"type": "string",
"description": "API view name"
}
}
}
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.