Files
skald-connectors/connectors/wikipedia/connector.json
T
dguiducci f1654d7d9d Fix weather + wikipedia: add mcp_config (command+args) to manifest
Both connectors were missing the mcp_config block that the frontend requires
to install mcp_local connectors. Bump v1→v2 (2.0.0).
2026-07-19 17:25:40 +01:00

46 lines
1.2 KiB
JSON

{
"id": "wikipedia",
"name": "Wikipedia",
"type": "mcp_local",
"launch_command": "python3 wikipedia_mcp_server.py",
"transport": "stdio",
"dependencies": [
"httpx>=0.27.0"
],
"docs": [
{
"lang": "en",
"description": "Search and read Wikipedia articles \u2014 free, no API key required. Search by keyword (returns titles, summaries, and URLs) or read the full text content of any Wikipedia article by title. Automatic redirect resolution and article truncation for long pages.",
"llm_short_description": "Wikipedia MCP: search articles and read full text. Free, no API key. Tools: search, readArticle."
}
],
"auth": {
"type": "none"
},
"setup_instructions": [
"Install dependencies: pip install -r requirements.txt",
"No configuration needed \u2014 Wikipedia API is free and public."
],
"homepage": "https://www.wikipedia.org",
"icon_small": "icon_sm.svg",
"icon_large": "icon_lg.svg",
"scope": "global",
"tags": [
"wikipedia",
"mcp",
"local",
"free",
"reference",
"research"
],
"mcp_config": {
"command": "python3",
"args": [
"wikipedia_mcp_server.py"
]
},
"version": 2,
"version_string": "2.0.0",
"version_release_date": "2026-07-19"
}