Doctah-MCP
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., "@Doctah-MCPsearch for Amiya's skills and talents"
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.
Doctah-MCP
π Language / θ―θ¨ιζ©: πΊπΈ English | π¨π³ δΈζ
π― Enable AI assistants to search and access Arknights game data through a simple MCP interface.
The Doctah-MCP Server provides a bridge between AI assistants and PRTS.wiki's Arknights repository through the Model Context Protocol (MCP). It allows AI models to search for operators and enemies and access their content in a programmatic way.
β¨ Core Features
π― Operator Search: Query detailed operator information including skills, talents, and attributes
βοΈ Enemy Intelligence: Access comprehensive enemy data with level progression
π List Search: Find operators and enemies with fuzzy search functionality
π Content Verification: Smart content validation to distinguish operators from enemies
π€ AI-Friendly: Clean Markdown output with consistent structure
Related MCP server: Blue Archive MCP Server
π Quick Start
Install from Source
git clone https://github.com/TonybotNi/Doctah-MCP.git
cd doctah-mcp
pip install -e .Verify installation:
# Test if global command works
doctah-mcp --help
# Or test with Python module
python -m doctah_mcp.server --helpFor development:
# Clone and set up development environment
git clone https://github.com/TonybotNi/Doctah-MCP.git
cd doctah-mcp
# Install with test dependencies
pip install -e ".[dev]"π MCP Integration
Choose one of the following configuration methods for your MCP client config file:
Method 1: Using global command (recommended)
{
"mcpServers": {
"doctah-mcp": {
"command": "doctah-mcp",
// Or use full path: "/full/path/to/doctah-mcp"
"args": []
}
}
}π‘ If
doctah-mcpcommand is not found, use Method 3 with full path to python executable
Method 2: Using Python module
{
"mcpServers": {
"doctah-mcp": {
"command": "python",
"args": ["-m", "doctah_mcp.server"]
}
}
}Method 3: Using full path (most reliable)
{
"mcpServers": {
"doctah-mcp": {
"command": "/full/path/to/python",
"args": ["-m", "doctah_mcp.server"],
"cwd": "/path/to/doctah-mcp-folder"
}
}
}π‘ Note:
cwdis the working directory, only needed in method 3, pointing to your downloaded doctah-mcp project folder
π‘ Available Tools
The server provides four main tools:
1. Operator Search
Search for detailed operator information:
result = await call_tool("search_operator_mcp", {
"name": "Amiya",
"sections": "skills,talents"
})2. Enemy Search
Get comprehensive enemy data:
result = await call_tool("search_enemy_mcp", {
"name": "Originium Slug",
"sections": "level0,level1"
})3. List Operators
Find operators matching a pattern:
result = await call_tool("list_operators_mcp", {
"name": "guard"
})4. List Enemies
Find enemies matching a pattern:
result = await call_tool("list_enemies_mcp", {
"name": "drone"
})π Client Configuration
Claude Desktop
Configuration file locations:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.jsonLinux:
~/.config/Claude/claude_desktop_config.json
Recommended configuration (simplest):
{
"mcpServers": {
"doctah-mcp": {
"command": "doctah-mcp",
"args": []
}
}
}Fallback configuration (if above doesn't work):
{
"mcpServers": {
"doctah-mcp": {
"command": "/full/path/to/python",
"args": ["-m", "doctah_mcp.server"],
"cwd": "/path/to/doctah-mcp-folder"
}
}
}Cherry Studio
Open Cherry Studio β Settings β MCP Servers β Add
Select Type: STDIO
Simple configuration:
Command:
doctah-mcpArgs:
[]
Fallback configuration (if above doesn't work):
Command:
/full/path/to/pythonArgs:
["-m", "doctah_mcp.server"]Cwd:
/path/to/doctah-mcp-folder
βοΈ Configuration
Configure through environment variables:
Variable | Purpose | Default |
LOG_LEVEL | Logging level | INFO |
π§ͺ Testing
Run the test suite:
python -m pytestπ License
Released under the MIT License. See the LICENSE file for details.
π Detailed Setup Guides
Need more detailed configuration and troubleshooting? Check out:
Made with β€οΈ for Arknights community
GitHub Star History
This server cannot be installed
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 Servers
- AlicenseBqualityBmaintenanceEnables querying detailed information about characters, echoes, and character profiles from the Wuthering Waves game, returning results in LLM-optimized Markdown format.Last updated34MIT
- Alicense-qualityDmaintenanceProvides comprehensive access to Blue Archive game data including students, equipment, stages, and multimedia content via the SchaleDB API. It enables AI assistants to perform advanced searches and retrieve detailed game information in English, Japanese, and Chinese.Last updated2MIT
- AlicenseAqualityAmaintenanceArknights PRTS Wiki MCP Server β queries the PRTS Wiki API for full-text search and article extraction, and serves auto-synced operator archives, voice lines, and story/event scripts from game data. Designed for fan-creation AI agents that need accurate lore, character profiles, and in-character dialogue references.Last updated96MIT

AmiyaBot MCP Serverofficial
Flicense-qualityAmaintenanceProvides MCP server and CLI for querying Arknights game data, including operator skills, glossary, and resource updates.Last updated1
Related MCP Connectors
Search your Obsidian vault to quickly find notes by title or keyword, summarize related content, aβ¦
Search Stack Exchange questions, fetch Q&A threads as markdown, look up tag FAQs and user profiles.
Jina AI Reader/Search MCP β turn any URL into clean LLM-ready markdown, plus web search.
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/TonybotNi/Doctah-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server