P
PRTS
Access Arknights game data via the PRTS Wiki API, including operator profiles, voice lines, story events, and wiki articles.
Share:
About
Access Arknights game data via the PRTS Wiki API, including operator profiles, voice lines, story events, and wiki articles.
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about PRTS.
- What data does the PRTS Model Context Protocol (MCP) server provide?
- The PRTS MCP server provides access to Arknights game data from the PRTS Wiki API. This includes operator profiles, voice lines, story events, and other wiki articles related to the game.
- How can I install the PRTS MCP in a client like Cursor?
- Installation typically involves adding the PRTS MCP server's repository URL to the client's MCP configuration. Specific steps vary by client, but generally entail using a command-line interface or a graphical user interface to register the server.
- Does the PRTS MCP server require an API key or authentication?
- No, the PRTS MCP server uses 'none' as its authentication type. This means it does not require an API key, OAuth, or other credentials to access the data it exposes.
- What are the primary capabilities of the PRTS MCP server?
- The primary capability is to access and retrieve Arknights game data. This allows developers to integrate operator information, game lore, and other wiki content into their applications or tools.
- What is a known limitation of using the PRTS MCP server?
- A realistic limitation is that the data provided is sourced from the PRTS Wiki, so its accuracy and completeness depend on the wiki's current state. There might also be rate limits imposed by the underlying PRTS Wiki API.
Install PRTS
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"prts": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-prts"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"prts": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-prts"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"prts": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-prts"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.