Minecraft Wiki MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| MC_WIKI_MCP_NAME | No | MCP server name | Minecraft Wiki MCP (stdio) |
| MC_WIKI_LOG_LEVEL | No | Log level (DEBUG/INFO/WARNING/ERROR) | INFO |
| MC_WIKI_API_TIMEOUT | No | API request timeout (seconds) | 30 |
| MC_WIKI_API_BASE_URL | No | Wiki API base URL | http://mcwiki.rice-awa.top |
| MC_WIKI_DEFAULT_LIMIT | No | Default search results limit | 10 |
| MC_WIKI_DEFAULT_FORMAT | No | Default output format (wikitext/html/markdown/both) | wikitext |
| MC_WIKI_MAX_BATCH_SIZE | No | Maximum batch processing size | 20 |
| MC_WIKI_API_MAX_RETRIES | No | Maximum retry attempts | 3 |
| MC_WIKI_MAX_CONCURRENCY | No | Maximum concurrency | 5 |
| MC_WIKI_MCP_DESCRIPTION | No | MCP server description | Auto-generated |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_wikiA | 搜索 Minecraft 中文 Wiki。 用1-3个游戏名词查找匹配的页面。多关键词会缩小范围(所有词须同时出现在结果页面中), 如需多角度搜索应分批调用本工具,而非把大量关键词堆在一次查询中。 |
| get_pageA | 获取 Minecraft 中文 Wiki 页面的内容。 根据页面名称获取 Wiki 页面的完整内容。 格式选择:
wikitext 中遇到不认识的 {{Template}} 时,可用 search_wiki 传 namespaces=[10] 去模板命名空间搜索该模板的文档。 |
| check_page_existsC | 检查页面是否存在。 |
| check_healthA | 检查 Wiki API 服务健康状态。 |
| list_namespacesA | 获取 Minecraft Wiki 的命名空间映射表。 返回所有可用命名空间的数字 ID 和对应名称。 结合 search_wiki 的 namespaces 参数使用。 |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 5 tools
Each tool has a distinct purpose: checking existence, searching, fetching page content, health check, and listing namespaces. No overlap in functionality.
All tool names follow a consistent verb_noun pattern in snake_case (e.g., check_page_exists, search_wiki, get_page). No inconsistencies.
With 5 tools, the server is well-scoped for read-only wiki operations: existence check, search, content retrieval, health, and namespace mapping. Appropriate for the domain.
Covers core read operations (search, get, check existence) and auxiliary (health, namespaces). Missing list_pages or revision retrieval, but not critical for basic wiki access.