lookup

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

All edges touching a term in a language.

Parameters

NameTypeRequiredDescription
termstringyesWord or phrase
langstringnoISO-639-1 code (default en)
limitnumberno1-1000 (default 50)
offsetnumberno0-based offset
only_relstringnoRestrict to one relation (e.g. “IsA”, “UsedFor”)
end_node_langstringnoRestrict 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

FieldTypeDescription
@contextarrayJSON-LD context
@idstringNode URI
edgesarrayList of edges involving this node
viewstringAPI 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.

Regenerated from source · build May 21, 2026