- Home
- MCP servers
- Anitabi
Anitabi
- javascript
9
GitHub Stars
javascript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"qiyuor2-anitabi-mcp-server": {
"command": "node",
"args": [
"C:\\Users\\11762\\@qiyuor2\\anitabi-mcp-server\\dist\\index.cjs"
]
}
}
}You can run the Anitabi MCP server locally to access and manage the Anitabi mission map data, enabling convenient MCP-based communication and tooling during development or exploration.
How to use
Use an MCP client to connect to the Anitabi MCP server by running the server locally or by pointing a remote MCP client at a running instance. The server exposes a standard MCP interface that you can start with a local runtime or via a package runner, letting you request data, trigger actions, and test MCP interactions during development.
To run the server locally, you can execute the provided runtime command or use the NPX approach described in the configuration examples. If you plan to work with the server in a collaborative environment, you may prefer running it via NPX for quick, one-off starts, or run it directly from your local build during development.
How to install
Prerequisites: you need Node.js installed if you plan to run the server locally. You may also use NPX to execute the MCP server without a local install.
Below are concrete commands and configurations you can use to run the MCP server in your environment.
{
"mcpServers": {
"anitabi-mcp-server": {
"command": "npx",
"args": [
"-y",
"@qiyuor2/anitabi-mcp-server"
]
}
}
}
Additional notes
Local development can also run the server directly from a built distribution. The following command illustrates starting the server using a local Node runtime with a built index file.
{
"mcpServers": {
"anitabi-mcp-server": {
"command": "node",
"args": [
"C:\\Users\\11762\\@qiyuor2\\anitabi-mcp-server\\dist\\index.cjs"
]
}
}
}
Publishing and maintenance
When you are ready to publish a new version of the MCP server, you can use the standard package manager workflow to publish to your registry. The example here uses the public scope for distribution.
pnpm publish --access=public