Wikipedia MCP Server
Wikipedia MCP サーバー
これは、要求されたトピックの Wikipedia コンテンツを提供する MCP (モデル制御プロトコル) サーバーです。
設定
必要な依存関係をインストールします。
pip install -r requirements.txtサーバーを起動します。
python src/server.pyサーバーはhttp://localhost:5000で実行されます。
Related MCP server: librarian
APIの使用
CLIからAPIを使用する
topicフィールドを含む JSON 本文を含む POST リクエストを/mcpに送信します。
curl -X POST http://localhost:5000/mcp \
-H "Content-Type: application/json" \
-d '{"topic": "Python_(programming_language)"}'Cursor Composer の API の使用
Wikipediaのトピックについて質問する
カーソルにMCPリクエストの提案が表示され、ツールを実行する許可を求められます。
承認後、カーソルはMCPサーバーへのリクエストを実行します。
プロンプトの結果は、MCPサーバーの応答の選択されたモデルの分析に基づいて表示されます。

応答フォーマット
成功した応答:
{
"status": "success",
"data": {
"title": "Page Title",
"content": "Page Content",
"url": "Wikipedia URL"
}
}エラー応答:
{
"status": "error",
"error": "Error message"
}テスト
テスト スクリプトを実行して、サーバーが動作していることを確認します。
python src/test_server.pyThis server cannot be deployed
Maintenance
Related MCP Connectors
MCP server for generating rough-draft project plans from natural-language prompts.
Driflyte MCP server which lets AI assistants query topic-specific knowledge from web and GitHub.
An MCP server that provides read access to your cloud storage providers, bank accounts and more.
An MCP server that provides tools to discover and retrieve podcast episodes transcripts.
Related MCP Servers
- AlicenseBqualityBmaintenanceA Model Context Protocol server that retrieves information from Wikipedia to provide context to LLMs, allowing users to search articles, get summaries, full content, sections, and links from Wikipedia.223,951 PyPI295MIT
- AlicenseBqualityCmaintenanceAn MCP server that enables LLMs to search, summarize, and retrieve detailed information from Wikipedia across multiple languages. It supports automated fact-checking by allowing models to proactively verify factual claims using Wikipedia's database.52MIT
- AlicenseNot gradedqualityDmaintenanceProvides structured access to Wikipedia content including search, summaries, images, links, and more via MCP tools.6Apache 2.0
- FlicenseNot gradedqualityDmaintenanceMCP server providing live Wikipedia recent changes feed, page summaries, trending pages, and Wikidata entity lookup.-