Fandom Wiki MCP Server
Allows fetching data from any Fandom wiki, including searching articles, retrieving full article text or summaries, listing category members, and getting wiki stats.
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., "@Fandom Wiki MCP ServerSearch the OGame wiki for 'Graviton Technology'"
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.
Fandom Wiki MCP Server
A generic Model Context Protocol server for fetching data from any Fandom wiki.
Tools
Tool | Description |
| Search for articles on any Fandom wiki |
| Fetch the full text of an article |
| Fetch just the intro/summary of an article |
| List pages that belong to a category |
| Get general info and stats about a wiki |
Every tool accepts a wiki parameter — the subdomain of the Fandom wiki you want to query:
Wiki |
|
ogame.fandom.com |
|
minecraft.fandom.com |
|
starwars.fandom.com |
|
leagueoflegends.fandom.com |
|
Related MCP server: mcp-mediawiki-crunchtools
Installation
pip install .Or with uv:
uv pip install .Usage
Run the server directly:
fandom-wiki-mcpOr via the MCP CLI:
mcp run src/fandom_wiki_mcp/server.pyClaude Desktop Configuration
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"fandom-wiki": {
"command": "fandom-wiki-mcp"
}
}
}Or with uv (no global install needed):
{
"mcpServers": {
"fandom-wiki": {
"command": "uvx",
"args": ["--from", "/path/to/mcp-fandomwiki", "fandom-wiki-mcp"]
}
}
}Example Prompts
"Search the OGame wiki for 'Graviton Technology'"
"Get the full article for 'Creeper' from the Minecraft wiki"
"List pages in the 'Ships' category on the Star Wars wiki"
"What stats does the League of Legends wiki have?"
Available Tools
5 toolsget_articleA
Fetch the full text content of a wiki article.
Args: wiki: Wiki subdomain (e.g. "ogame", "minecraft", "starwars"). title: Exact article title.
| Name | Required | Description | Default |
|---|---|---|---|
| wiki | Yes | ||
| title | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. Only states action 'fetch', but does not disclose any behavioral traits like rate limits, authentication requirements, or error behavior. Minimal for a read operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Very concise: two sentences for description, then parameter list. No extraneous information. Structure is clear and front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given output schema exists (context signal), description is quite complete. Covers purpose and parameters. Could mention output format briefly, but output schema handles that.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Despite 0% schema coverage, the description adds meaning by explaining both parameters: 'wiki' with examples, 'title' as exact article title. Compensates fully for the schema's lack of description.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states it fetches full text content of a wiki article. Verb 'Fetch' and resource 'full text content of a wiki article' are specific. Distinguishes from sibling 'get_article_summary' which presumably returns a summary.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Implies usage when full text is needed, but no explicit 'when to use' or 'when not to use' compared to siblings. No guidance on alternatives like 'search_wiki'.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_article_summaryA
Fetch just the introductory summary of a wiki article.
Args: wiki: Wiki subdomain (e.g. "ogame", "minecraft", "starwars"). title: Exact article title.
| Name | Required | Description | Default |
|---|---|---|---|
| wiki | Yes | ||
| title | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, and the description does not disclose behavioral traits such as read-only nature, permissions, or limitations. It only states the basic operation, leaving the agent without important context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Extremely concise: one sentence for purpose, two for parameters. No wasted words. Front-loaded with the primary action.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With an output schema, return values are covered. Parameters are simple and well-explained. Could mention that only summary is returned, but it's implied by the name and description.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, so description compensates by explaining 'wiki' as subdomain and 'title' as exact article title. However, it does not specify formats or constraints (e.g., case sensitivity).
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states 'Fetch just the introductory summary of a wiki article,' using a specific verb and resource. This differentiates from siblings like get_article (full article) and search_wiki (search).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides clear parameter guidance (wiki subdomain examples, exact title). Implicitly guides when to use (for summary vs full article) but lacks explicit when-not and alternative naming.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_wiki_infoA
Get general information about a Fandom wiki.
Args: wiki: Wiki subdomain (e.g. "ogame", "minecraft", "starwars").
| Name | Required | Description | Default |
|---|---|---|---|
| wiki | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, and the description does not disclose behavioral traits like idempotency, side effects, authentication needs, or rate limits. It only states the basic function, leaving the agent uninformed beyond the immediate action.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is very short (one line plus parameter definition), no wasted words. However, parameter documentation uses a separate line, which is fine. Could be more structured (e.g., stating output format) but remains efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the presence of an output schema (not shown), the description does not need to detail return values. However, it lacks context on what 'general information' includes, and no usage scenarios are provided, making it minimally complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has 0% description coverage for the 'wiki' parameter, but the description adds meaningful context by defining 'wiki' as a subdomain with common examples (ogame, minecraft). This compensates for the schema gap, though format details could be clearer.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool retrieves 'general information about a Fandom wiki', which is a specific action on a defined resource. This distinguishes it from sibling tools like 'get_article' (specific article) or 'search_wiki' (search), so purpose differentiation is strong.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance on when to use this tool versus alternatives. The description implies its use for general wiki info, but lacks when-not or direct comparisons. It's adequate but not proactive.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_category_membersA
List pages that belong to a category on a Fandom wiki.
Args: wiki: Wiki subdomain (e.g. "ogame", "minecraft", "starwars"). category: Category name, with or without the "Category:" prefix. limit: Maximum number of results (default 20, max 500).
| Name | Required | Description | Default |
|---|---|---|---|
| wiki | Yes | ||
| category | Yes | ||
| limit | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. Does not disclose ordering, pagination behavior, rate limits, or error conditions. Only describes basic functionality.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Extremely concise with no wasted words. Front-loaded with purpose, followed by structured parameter descriptions.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Adequately covers purpose and parameters. With an existing output schema, return format is presumably documented elsewhere. Could mention that results are page titles, but still complete enough.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Description adds meaning beyond schema: explains wiki subdomain with examples, category prefix flexibility, and limit with default/max values. Schema coverage is 0% but description compensates well.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'List pages that belong to a category on a Fandom wiki' with a specific verb (list), resource (pages in a category), and domain (Fandom wiki). It distinguishes from siblings like get_article and search_wiki.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool over alternatives like search_wiki or get_article. No exclusions or when-not-to-use information.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_wikiB
Search for articles on a Fandom wiki.
Args: wiki: Wiki subdomain (e.g. "ogame", "minecraft", "starwars"). query: Search query string. limit: Maximum number of results to return (default 10, max 50).
| Name | Required | Description | Default |
|---|---|---|---|
| wiki | Yes | ||
| query | Yes | ||
| limit | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are present, and the description does not disclose any behavioral traits such as authentication requirements, rate limits, or side effects. The description merely states the function without additional context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and well-structured, listing arguments in a clear Args block. Each sentence serves a purpose, though could be slightly more polished.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the presence of an output schema and relatively simple tool, the description covers core functionality. However, it lacks details on error handling, pagination behavior, or result format, leaving some gaps for the agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description explains each parameter beyond the schema: wiki specifies subdomain examples, query is a search string, and limit includes default and max values. This adds meaningful context to the parameter names.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool searches for articles on a Fandom wiki, specifying required arguments. However, it does not explicitly differentiate from sibling tools like get_article, which may cause confusion about when to use each.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives. There is no mention of context, prerequisites, or scenarios where this tool would be inappropriate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
Each tool targets a distinct operation: full article content, summary, wiki info, category members, and search. No overlaps.
All tools use consistent snake_case verb_noun pattern (get_*, list_*, search_*), making them predictable.
Five tools cover essential read operations for a wiki client without being excessive or insufficient.
Covers core read functionality (article, summary, search, categories, wiki info). Lacks deeper features like article history or media retrieval but is appropriate for basic access.
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 Connectors
Read-only MCP for the Eco game wiki: search, Markdown pages, and wiki_* lookups. No keys, no writes.
An MCP server that provides tools to discover and retrieve podcast episodes transcripts.
Driflyte MCP server which lets AI assistants query topic-specific knowledge from web and GitHub.
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!226
- AlicenseBqualityCmaintenanceA 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.19AGPL 3.0
- AlicenseAqualityAmaintenanceAn MCP server for MediaWiki instances with multi-wiki support, providing full read/write access via REST and Action APIs across multiple named wikis.211803MIT
- AlicenseNot gradedqualityAmaintenanceMCP server for searching and reading Wikipedia articles, including summaries, full text, targeted sections, nearby pages, and language editions.3582Apache 2.0
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/dotnetrule/mcp-fandomwiki'
If you have feedback or need assistance with the MCP directory API, please join our Discord server