drio
Open app

anitabi-mcp-server

Source

anitabi 巡礼地图的 MCP Server

Catalog onlyCatalog onlySTDIO

Overview

anitabi-mcp-server is a server for the anitabi pilgrimage map, designed to facilitate the use of the map in various applications.

To use anitabi-mcp-server, you can run it using NPX or set it up for local development by configuring the server command in your project.

  • Easy setup with NPX command - Local development configuration - Public access for publishing updates
  1. Integrating pilgrimage map functionalities into applications.
  2. Local development for testing and modifications.
  3. Publishing updates to the anitabi map server.

Add to your AI client

Use these steps to connect anitabi-mcp-server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "anitabi-mcp-server-qiyuor2": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-anitabi-mcp-server-qiyuor2"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "anitabi-mcp-server-qiyuor2": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-anitabi-mcp-server-qiyuor2"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "anitabi-mcp-server-qiyuor2": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-anitabi-mcp-server-qiyuor2"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "anitabi-mcp-server-qiyuor2": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-anitabi-mcp-server-qiyuor2"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "anitabi-mcp-server-qiyuor2": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-anitabi-mcp-server-qiyuor2"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "anitabi-mcp-server-qiyuor2": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-anitabi-mcp-server-qiyuor2"
      ]
    }
  }
}

FAQ

Is anitabi-mcp-server free to use?

Yes! anitabi-mcp-server is free to use under the MIT license.

How can I contribute to anitabi-mcp-server?

You can contribute by forking the repository and submitting pull requests on GitHub.