Minecraft Wiki MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Minecraft Wiki MCP Serversearch wiki for 'redstone mechanics'"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Minecraft Wiki MCP Server
Project Overview
A MCP-based Minecraft Wiki server that provides convenient access to Chinese Minecraft Wiki content. Supports stdio, SSE and http transports in a single package, and can be deployed quickly via uvx.
Note: This project only provides the MCP layer on top of a Minecraft wiki API. For local API deployment, please visit minecraft-wiki-fetch-api.
Features
π Wiki Search: Search Chinese Minecraft Wiki pages with concise keyword guidance
π Page Retrieval: Get full page content in wikitext (default, token-efficient) or html
β Page Existence Check: Quick check if a page exists (including redirects)
π Namespace Listing: List available wiki namespaces for targeted search
π₯ Health Monitoring: Monitor backend Wiki API service status
π Multi Transport:
stdio(Claude Desktop / local clients),http(remote/server),sse(legacy)π One-Click Deployment: Run via
uvxwithout local installβοΈ Env + CLI Config: Flexible configuration via environment variables and CLI flags
Related MCP server: mcp-mediawiki-crunchtools
Quick Start
π Recommended: Using uvx
# stdio (default) β for Claude Desktop / local MCP clients
uvx mc-wiki-fetch-mcp
# http β for remote / server deployment
uvx mc-wiki-fetch-mcp --transport http --host 0.0.0.0 --port 3001
# Custom Wiki API URL
uvx mc-wiki-fetch-mcp --api-url http://localhost:3000
# Or via environment variables
MC_WIKI_API_BASE_URL=http://localhost:3000 \
MC_WIKI_MCP_TRANSPORT=http \
uvx mc-wiki-fetch-mcp
# Help
uvx mc-wiki-fetch-mcp --helpπ» Integration with Claude Desktop (stdio)
Config file locations:
Windows:
%APPDATA%\Claude\claude_desktop_config.jsonmacOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonLinux:
~/.config/claude/claude_desktop_config.json
Edit configuration:
{ "mcpServers": { "minecraft-wiki": { "command": "uvx", "args": ["mc-wiki-fetch-mcp"], "env": { "MC_WIKI_API_BASE_URL": "https://mcwiki.rice-awa.top" } } } }Restart Claude Desktop
π Remote / HTTP clients (http)
uvx mc-wiki-fetch-mcp -t http --host 0.0.0.0 --port 3001Point your MCP client to the Streamable HTTP endpoint (must include /mcp):
http://<host>:3001/mcpExample client config:
{
"mcpServers": {
"minecraft-wiki": {
"url": "http://127.0.0.1:3001/mcp"
}
}
}Note: The endpoint is
/mcp, not the root/. Connecting tohttp://host:3001will causelist_tools/tools/listto return 404. Use transport type http / streamable-http, not SSE.
Configuration Options
Environment Variables
Environment Variable | Description | Default |
| Wiki API base URL |
|
| API request timeout (seconds) |
|
| Transport: |
|
| Bind host (HTTP/SSE) |
|
| Bind port (HTTP/SSE) |
|
| MCP server display name |
|
| Log level |
|
Command Line Arguments
Parameter | Description |
|
|
| Bind host for HTTP/SSE |
| Bind port for HTTP/SSE |
| Wiki API base URL |
| API request timeout (seconds) |
|
|
| MCP server display name |
| Show version |
| Show help |
Priority: CLI args > environment variables > defaults.
Available Tools
Tool | Description | Main Parameters |
| Search Chinese Minecraft Wiki |
|
| Get page content (wikitext/html) |
|
| Check whether a page exists |
|
| Check Wiki API health | β |
| List wiki namespace ID β name map | β |
Tips for Agents
Prefer 1β3 game terms in
search_wiki; extra keywords narrow results.Prefer wikitext for
get_page(default). Usehtmlonly when a template is unreadable.Unknown
{{Template}}in wikitext β callsearch_wikiwithnamespaces=[10].
Traditional Installation (Developers)
git clone <repository-url>
cd mc-wiki-mcp-pypi
pip install -e .
# or: uv pip install -e .
# stdio
mc-wiki-fetch-mcp
# http
mc-wiki-fetch-mcp -t http -p 3001Troubleshooting
uvx not found
curl -LsSf https://astral.sh/uv/install.sh | sh
# or
pip install uvCannot connect to Wiki API
echo $MC_WIKI_API_BASE_URL
curl http://your-api-url/health
MC_WIKI_LOG_LEVEL=DEBUG uvx mc-wiki-fetch-mcpTools not visible in Claude Desktop
Confirm
uvx mc-wiki-fetch-mcp --versionworksCheck Claude Desktop logs
Restart Claude Desktop
HTTP client returns 404 on list_tools
Confirm the client URL is
http://<host>:<port>/mcp(the trailing/mcpis required)Use transport http / streamable-http, not SSE
After restarting the server, reconnect the client so it gets a fresh session
Related Documentation
API Documentation β Detailed API interface documentation
Modification Summary β Recent packaging changes
Contributing
Issues and Pull Requests are welcome!
License
MIT License β see LICENSE.
Getting Help
Check the troubleshooting section above
Browse docs/
Open an Issue with logs
Quick tips
π Local client:
uvx mc-wiki-fetch-mcp(stdio)π Server mode:
uvx mc-wiki-fetch-mcp -t http -p 3001βοΈ Configure: env vars or CLI flags
π§ Develop:
pip install -e .
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseBqualityCmaintenanceA MCP server that allows you to search and retrieve content on any wiki site using MediaWiki with LLMs π€. wikipedia.org, fandom.com, wiki.gg and more sites using Mediawiki are supported!Last updated226
- AlicenseBqualityBmaintenanceA secure MCP server for interacting with MediaWiki instances, allowing users to search, read, create, and manage wiki content like pages, categories, and files. It supports both public and private wikis with comprehensive authentication for full read and write operations.Last updated19AGPL 3.0
- AlicenseAqualityAmaintenanceMCP server for MediaWiki wikis. Search, read, edit, and manage wiki content from AI assistants. Includes formatting, link checking, revision history, and markdown conversion.Last updated4319MIT
- Alicense-qualityDmaintenanceAn MCP server that enables full management of WikiJS instances, supporting operations like page creation, searching, and updating. It also provides tools for knowledge graph exploration, content summarization, and retrieval of wiki statistics.Last updated19MIT
Related MCP Connectors
Wikipedia MCP β wraps Wikipedia REST API (free, no auth)
MCP-native open-source Notion alternative: read & write pages, databases and kanban boards.
Wikidata MCP β wraps Wikidata API (wikidata.org/w/api.php)
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/rice-awa/mc-wiki-mcp-pypi'
If you have feedback or need assistance with the MCP directory API, please join our Discord server