abstract
Pack: dbpedia · Endpoint: https://gateway.pipeworx.io/dbpedia/mcp
Convenience: fetch the prose abstract for a topic.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
label | string | yes | Topic label (e.g. “Eiffel Tower”) |
lang | string | no | ISO 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
| Field | Type | Description |
|---|---|---|
label | string | Entity label or title |
lang | string | ISO 639-1 language code |
abstract | string | null | Prose abstract text from Wikipedia or null if not found |
source | string | URL to Wikipedia page (optional, only when found) |
note | string | Contextual 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.