Ogni connector.json ora ha una llm_short_description che elenca i tool specifici che espone, così l'LLM sa esattamente cosa attivare (lazy load). SKALD.md: documentata criticità del campo llm_short_description nel system prompt dell'LLM.
48 lines
1.5 KiB
JSON
48 lines
1.5 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 search and article reader (free, no API key). Tools: search (full-text across all wikis with result snippets, auto-language detection), readArticle (full content by title, returns sections and markup). Best for encyclopedic research, definitions, biographies, and historical references."
|
|
}
|
|
],
|
|
"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",
|
|
"requires": [
|
|
"PYTHON"
|
|
],
|
|
"tags": [
|
|
"wikipedia",
|
|
"mcp",
|
|
"local",
|
|
"free",
|
|
"reference",
|
|
"research"
|
|
],
|
|
"mcp_config": {
|
|
"command": "python3",
|
|
"args": [
|
|
"wikipedia_mcp_server.py"
|
|
]
|
|
},
|
|
"version": 4,
|
|
"version_string": "3.0.1",
|
|
"version_release_date": "2026-07-21"
|
|
} |