query
Pack: conceptnet · Endpoint: https://gateway.pipeworx.io/conceptnet/mcp
Generic /query edge search (combine rel, start, end, node, source).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
rel | string | no | Relation URI (with or without /r/ prefix) |
start | string | no | Start node — “/c/en/dog” or “dog” |
end | string | no | End node |
node | string | no | Match either start or end |
source | string | no | Source dataset URI |
limit | number | no | |
offset | number | no |
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":"query","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
@context | array | JSON-LD context |
@id | string | Query URI |
edges | array | Matching edges |
view | string | API view name |
Full JSON Schema
{
"type": "object",
"description": "Generic edge search results",
"properties": {
"@context": {
"type": "array",
"description": "JSON-LD context"
},
"@id": {
"type": "string",
"description": "Query URI"
},
"edges": {
"type": "array",
"description": "Matching edges",
"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.