Back to MCP directory
publicPublicdnsLocal runtime

wikipedia

一个MCP服务器项目,提供访问维基百科页面的功能。

article

README

🚀 使用说明

本配置文件展示了一个关于 mcpServers 的配置示例,其中包含了 wikipedia 服务器的相关配置信息。以下是具体的配置内容:

{
  "mcpServers": {
    "wikipedia": {
      "command": "uv",
      "args": [
        "--directory",
        "%USERPROFILE%/Documents/GitHub/mcp-wikipedia",
        "run",
        "python",
        "main.py"
      ]
    }
  }
}

配置说明

  • mcpServers:一个对象,包含了多个服务器的配置信息。
  • wikipediamcpServers 下的一个服务器配置项。
    • command:要执行的命令,这里是 uv
    • args:命令的参数列表,包括指定目录、运行 Python 脚本等操作。

通过这个配置文件,可以方便地对 wikipedia 服务器进行相关操作。

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client