abstract

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

Convenience: fetch the prose abstract for a topic.

Parameters

NameTypeRequiredDescription
labelstringyesTopic label (e.g. “Eiffel Tower”)
langstringnoISO 639-1 language code (default en)

Example call

curl -X POST https://gateway.pipeworx.io/dbpedia/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"abstract","arguments":{}}}'

Response shape

Always returns: label, lang, abstract, note

FieldTypeDescription
labelstringEntity label or title
langstringISO 639-1 language code
abstractstring | nullProse abstract text from Wikipedia or null if not found
sourcestringURL to Wikipedia page (optional, only when found)
notestringContextual note about data source or status
Full JSON Schema
{
  "type": "object",
  "properties": {
    "label": {
      "type": "string",
      "description": "Entity label or title"
    },
    "lang": {
      "type": "string",
      "description": "ISO 639-1 language code"
    },
    "abstract": {
      "type": [
        "string",
        "null"
      ],
      "description": "Prose abstract text from Wikipedia or null if not found"
    },
    "source": {
      "type": "string",
      "description": "URL to Wikipedia page (optional, only when found)"
    },
    "note": {
      "type": "string",
      "description": "Contextual note about data source or status"
    }
  },
  "required": [
    "label",
    "lang",
    "abstract",
    "note"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "dbpedia": {
      "url": "https://gateway.pipeworx.io/dbpedia/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 21, 2026