Skip to main content
Glama
cryppadotta
by cryppadotta

Wizzypedia MCP 服务器

Wizzypedia MCP 服务器

这是一个用于与 Wizzpedia API 交互的模型上下文协议 (MCP)服务器,旨在与支持 MCP 的编辑器(如 Cursor 或 Claude Desktop)配合使用。

这意味着您可以从任何支持 MCP 的工具查询(或写入) Wizzypedia

特征

  • 搜索 wiki 页面(只读)

  • 读取页面内容(只读)

  • 查看页面历史记录(只读)

  • 列出页面类别(只读)

  • 创建新页面(需要身份验证)

  • 更新现有页面(需要身份验证)

Related MCP server: mediawiki-mcp-server

例子

用户:将“Dotta”页面的 wikitext 下载到此 repo 中的 Dotta.wiki 文件中

AI:我会帮你下载“Dotta”页面的wikitext内容并将其保存到文件中。我来把步骤分解一下:首先,我会获取“Dotta”页面的wikitext内容:...

// Dotta.wiki 页面已创建

// 现在您可以在本地编辑 Dotta.wiki

用户:现在用此文件的内容更新 Dotta 页面

AI:我已成功使用本地文件的内容更新了 wiki 上的 Dotta 页面。更新成功并创建了一个新的修订版本 (ID: 42157)。内容包含本地文件中的所有章节,包括简介、“Dotta 大焚烧”部分以及图片库。

安装

验证

服务器可以以两种模式运行:

  • 匿名模式(默认) :仅可进行读取操作

  • 认证模式:可进行读、写操作

仅当您需要执行写入操作(创建/更新页面)时才需要身份验证凭据。

Wizzypedia MCP 服务器

MCP 配置

您可以将 MCP 服务器配置为只读模式或身份验证模式。请选择符合您需求的配置:

选项 1:只读模式(默认)

此配置仅允许读取操作(搜索、查看页面等)。

对于光标~/.cursor/mcp.json ):

{
  "mcpServers": {
    "wizzypedia": {
      "command": "npx",
      "args": ["-y", "wizzypedia-mcp-server"]
    }
  }
}

对于 Claude Desktop (在 macOS 上为~/Library/Application Support/Claude/claude_desktop_config.json ,在 Windows 上为%APPDATA%\Claude\claude_desktop_config.json ):

{
  "mcpServers": {
    "wizzypedia": {
      "command": "npx",
      "args": ["-y", "wizzypedia-mcp-server"]
    }
  }
}

选项 2:身份验证模式

此配置支持读取和写入操作(创建/更新页面)。

对于光标~/.cursor/mcp.json ):

{
  "mcpServers": {
    "wizzypedia": {
      "command": "npx",
      "args": [
        "-y",
        "wizzypedia-mcp-server",
        "--login",
        "your-username",
        "--password",
        "your-password"
      ]
    }
  }
}

对于 Claude Desktop (在 macOS 上为~/Library/Application Support/Claude/claude_desktop_config.json ,在 Windows 上为%APPDATA%\Claude\claude_desktop_config.json ):

{
  "mcpServers": {
    "wizzypedia": {
      "command": "npx",
      "args": [
        "-y",
        "wizzypedia-mcp-server",
        "--login",
        "your-username",
        "--password",
        "your-password"
      ]
    }
  }
}

可用工具

该服务器提供以下 MCP 工具:

只读工具(无需身份验证):

  1. search_pages - 在 wiki 中搜索页面

  2. read_page - 获取页面的原始 wikitext 内容

  3. get_page_history - 获取页面的修订历史记录

  4. get_categories - 获取页面所属的类别

写入工具(需要身份验证):

  1. **create_page——**创建一个新的 wiki 页面

  2. update_page - 更新现有的 wiki 页面

与游标一起使用

服务器运行后,您可以通过 Cursor 或其他兼容 MCP 的客户端进行连接。这样您可以:

  1. 搜索 wiki 内容

  2. 将 wiki 内容加载到编辑器中

  3. 本地编辑内容

  4. 将更改保存回 wiki(需要身份验证)

对于开发人员

npm install
npm run build

用法

以只读模式运行服务器:

# Basic read-only mode
node dist/index.js

# With custom API URL
node dist/index.js --api-url="https://en.wikipedia.org/w/api.php"

# Using npx
npx wizzypedia-mcp-server

使用身份验证运行以进行写访问:

# With environment variables
export MEDIAWIKI_API_URL="https://en.wikipedia.org/w/api.php"
export MEDIAWIKI_USERNAME="YourUsername"
export MEDIAWIKI_PASSWORD="YourPassword"
node dist/index.js

# Or with command line arguments
node dist/index.js --api-url="https://en.wikipedia.org/w/api.php" --login="YourUsername" --password="YourPassword"

# Or using npx
npx wizzypedia-mcp-server --login YourUsername --password YourPassword

执照

麻省理工学院

Available Tools

6 tools
create_pageC

Create a new wiki page

ParametersJSON Schema
NameRequiredDescriptionDefault
titleYesTitle of the new page
contentYesWiki content for the new page
summaryNoEdit summaryCreated via MCP

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden for behavioral disclosure. While 'Create' implies a write operation, it doesn't address permissions needed, whether the page becomes immediately visible, error conditions, or what happens on duplicate titles. This is inadequate for a mutation tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence with zero wasted words. It's appropriately sized and front-loaded with the core purpose.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a creation tool with no annotations and no output schema, the description is insufficient. It doesn't explain what happens after creation, potential side effects, or error handling. Given the complexity of creating a wiki page, more context is needed.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents all three parameters thoroughly. The description adds no additional parameter information beyond what's in the schema, meeting the baseline for high coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Create') and resource ('new wiki page'), making the purpose immediately understandable. It doesn't differentiate from sibling tools like 'update_page', but it's not vague or tautological.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives like 'update_page' or 'read_page'. There's no mention of prerequisites, context, or exclusions for usage.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_categoriesC

Get categories a page belongs to

ParametersJSON Schema
NameRequiredDescriptionDefault
titleYesTitle of the page

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure but offers minimal information. It implies a read-only operation ('Get') but doesn't specify aspects like authentication needs, rate limits, error conditions, or what happens if the page doesn't exist. For a tool with zero annotation coverage, this leaves significant gaps in understanding its behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely concise and front-loaded, consisting of a single, clear sentence that directly states the tool's purpose without any wasted words. Every part of the sentence earns its place by conveying essential information, making it efficient and easy to parse.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the lack of annotations and output schema, the description is incomplete for effective tool use. It doesn't explain what the tool returns (e.g., a list of category names, IDs, or full objects), error handling, or dependencies. For a tool with no structured output or behavioral hints, the description should provide more context to compensate.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% description coverage, with the 'title' parameter fully documented in the schema itself. The description adds no additional meaning beyond what the schema provides (e.g., it doesn't clarify format expectations or edge cases for the title). Thus, it meets the baseline score of 3, as the schema handles the heavy lifting for parameter semantics.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose with a specific verb ('Get') and resource ('categories a page belongs to'), making it immediately understandable. It distinguishes itself from siblings like 'get_page_history' or 'read_page' by focusing on page categorization rather than content or history. However, it doesn't explicitly differentiate from all siblings (e.g., 'search_pages' might also involve categories), keeping it from a perfect score.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., needing an existing page), exclusions, or comparisons to siblings like 'search_pages' which might also retrieve category-related data. Without such context, the agent must infer usage based on the tool name alone.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_page_historyC

Get revision history of a page

ParametersJSON Schema
NameRequiredDescriptionDefault
titleYesTitle of the page
limitNoMaximum number of revisions to return (default: 10)

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the action but does not describe key traits such as whether this is a read-only operation, if it requires authentication, how revisions are ordered (e.g., chronological), or what the output format looks like. This leaves significant gaps in understanding the tool's behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that directly states the tool's purpose without unnecessary words. It is front-loaded with the core action and resource, making it easy to parse quickly. Every part of the sentence earns its place by conveying essential information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity of retrieving revision history (which may involve multiple revisions, ordering, and metadata), the description is incomplete. It lacks details on output structure, error handling, or behavioral traits like pagination or rate limits. With no annotations and no output schema, the description does not provide enough context for effective use.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% description coverage, clearly documenting both parameters ('title' and 'limit' with a default). The description does not add any meaning beyond the schema, such as explaining what constitutes a 'revision' or how the limit affects performance. Since the schema does the heavy lifting, the baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb ('Get') and resource ('revision history of a page'), making the purpose understandable. However, it does not distinguish this tool from potential siblings like 'read_page' or 'search_pages' in terms of scope or output type, which prevents a perfect score.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. For example, it does not specify if this is for auditing changes, comparing versions, or recovering content, nor does it mention prerequisites like needing the page title. Without such context, the agent lacks direction on appropriate usage scenarios.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

read_pageB

Fetch the raw wikitext content of a page

ParametersJSON Schema
NameRequiredDescriptionDefault
titleYesTitle of the page to read

TDQS

B3.3/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It states what the tool does ('fetch raw wikitext') but doesn't describe any behavioral traits like error handling (e.g., what happens if the page doesn't exist), performance characteristics, authentication requirements, or rate limits. For a read operation with zero annotation coverage, this leaves significant gaps in understanding how the tool behaves in practice.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that immediately communicates the core functionality without any wasted words. It's front-loaded with the essential information and there's no unnecessary elaboration. Every word earns its place in this compact description.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (single parameter, read-only operation) and 100% schema coverage, the description is adequate but incomplete. It lacks output information (no output schema exists), doesn't mention error cases or behavioral constraints, and provides minimal context about when to use it. For a basic read tool, it meets minimum requirements but doesn't provide the completeness needed for optimal agent understanding.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% description coverage, with the single parameter 'title' clearly documented in the schema. The description doesn't add any parameter-specific information beyond what the schema provides (it doesn't explain formatting, constraints, or examples for the title parameter). With high schema coverage, the baseline score of 3 is appropriate since the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('fetch') and resource ('raw wikitext content of a page'), making the purpose immediately understandable. It distinguishes from siblings like 'get_page_history' (historical data) and 'search_pages' (searching), though it doesn't explicitly mention these alternatives. The verb+resource combination is specific but could be more precise about what distinguishes it from similar read operations.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage when raw wikitext is needed, but provides no explicit guidance on when to use this tool versus alternatives like 'get_categories' or 'search_pages'. There's no mention of prerequisites, error conditions, or typical use cases. The context is clear from the description alone, but lacks the explicit when/when-not guidance that would elevate the score.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_pagesC

Search for pages in the wiki using keywords

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesSearch query string
limitNoMaximum number of results to return (default: 10, max: 50)

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. The description only states the basic action ('search for pages') without covering key behavioral traits such as whether this is a read-only operation, how results are sorted or ranked, if there are rate limits, authentication requirements, or what the return format looks like. For a search tool with zero annotation coverage, this is a significant gap in transparency.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that directly states the tool's purpose without unnecessary words. It is appropriately sized and front-loaded, with every part earning its place by conveying the core functionality. There is zero waste or redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity of a search operation, lack of annotations, and no output schema, the description is incomplete. It doesn't explain what the search returns (e.g., page titles, snippets, IDs), how results are structured, or any behavioral aspects like pagination or error handling. The description alone is insufficient for an agent to fully understand how to use this tool effectively in context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% description coverage, with clear documentation for both parameters ('query' and 'limit'), including defaults and constraints. The description adds no additional parameter semantics beyond what the schema provides, such as explaining search syntax or result types. With high schema coverage, the baseline score of 3 is appropriate as the description doesn't compensate but also doesn't detract.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose as 'Search for pages in the wiki using keywords', which includes a specific verb ('search'), resource ('pages in the wiki'), and method ('using keywords'). However, it doesn't explicitly distinguish this search tool from potential sibling alternatives like 'read_page' or 'get_categories', which could also involve finding content. The description is clear but lacks sibling differentiation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention when to prefer 'search_pages' over 'read_page' for finding specific content, or how it relates to 'get_categories' for browsing. There are no exclusions, prerequisites, or context provided, leaving the agent to infer usage from the tool name alone.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

update_pageC

Update an existing wiki page

ParametersJSON Schema
NameRequiredDescriptionDefault
titleYesTitle of the page to update
contentYesNew wiki content for the page
summaryNoEdit summaryUpdated via MCP

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden for behavioral disclosure. 'Update' implies a mutation operation, but the description doesn't specify permissions required, whether changes are reversible, rate limits, or what happens if the page doesn't exist. This leaves significant behavioral gaps for a write operation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, clear sentence with zero wasted words. It's front-loaded with the essential information (update + wiki page) and doesn't include unnecessary elaboration or repetition.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a mutation tool with no annotations and no output schema, the description is insufficient. It doesn't explain what the tool returns, error conditions, or behavioral constraints. Given the complexity of updating a wiki page (which could involve permissions, versioning, etc.), more context is needed.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so all parameters are documented in the schema. The description doesn't add any parameter-specific information beyond what the schema already provides (title, content, summary). This meets the baseline for high schema coverage but doesn't enhance understanding.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Update') and resource ('an existing wiki page'), making the purpose immediately understandable. It distinguishes from siblings like 'create_page' (new vs existing) and 'read_page' (read vs update), though it doesn't explicitly mention these distinctions in the text itself.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives like 'create_page' for new pages or 'read_page' for viewing. It doesn't mention prerequisites (e.g., page must exist) or contextual considerations, leaving the agent to infer usage from the tool name alone.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 6 tool updates
    • First observedcreate_page
    • First observedget_categories
    • First observedget_page_history
    • First observedread_page
    • First observedsearch_pages
    • First observedupdate_page

TDQS

A3.6/5.0
Disambiguation5/5

Every tool has a clearly distinct purpose with no ambiguity: create_page, read_page, update_page handle the page lifecycle, while get_categories, get_page_history, and search_pages provide specific metadata and discovery functions. There is no overlap in functionality that could cause misselection.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern with snake_case (e.g., create_page, get_categories, update_page). The naming is predictable and readable throughout the set, with no deviations in style or convention.

Tool Count5/5

With 6 tools, this server is well-scoped for a wiki domain, covering core operations like CRUD for pages, search, and metadata retrieval. Each tool earns its place without feeling thin or bloated, aligning with typical server sizes of 3-15 tools.

Completeness5/5

The tool set provides complete coverage for wiki operations: create, read, update for pages (though delete is omitted, which is common in wikis to preserve history), plus search and metadata tools (categories, history). There are no obvious gaps that would cause agent failures in this domain.

Maintenance

ActivityInactive
ResponsivenessNo issues

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

Related MCP Servers

  • A
    license
    B
    quality
    B
    maintenance
    A 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.
    22
    294
    MIT
  • F
    license
    B
    quality
    C
    maintenance
    A 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!
    2
    26
    -
  • A
    license
    A
    quality
    C
    maintenance
    A Model Context Protocol server that enables AI agents to interact with Azure DevOps wikis, providing capabilities for content search, page management, and hierarchical structure navigation.
    5
    18
    MIT

Latest Blog Posts

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/cryppadotta/mcp-wizzypedia'

If you have feedback or need assistance with the MCP directory API, please join our Discord server