https://github.com/d2verb/wuwa-wiki-api-mcp
https://github.com/d2verb/wuwa-wiki-api-mcp
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/d2verb/wuwa-wiki-api-mcp
- Owner: d2verb
- Created: 2025-04-26T18:21:12.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-30T02:51:03.000Z (about 1 year ago)
- Last Synced: 2025-05-18T10:09:29.924Z (about 1 year ago)
- Language: Python
- Size: 41 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# wuwa-wiki-api-mcp
`wuwa-wiki-api-mcp` is an MCP Server that talks to a GraphQL API to retrieve information about Wuthering Waves (aka "wuwa"). It works hand-in-hand with the GraphQL server in the [wuwa-wiki-api](https://github.com/d2verb/wuwa-wiki-api) repository, so if you want to run the MCP server locally, be sure to clone and start that GraphQL server as well.
## Requirements
- Python 3.12 or higher
- uv
## Quick Start
Start the MCP server manually:
```bash
uv run main.py
```
Sample server definition for your MCP configuration file (e.g. `claude_desktop_config.json`):
```json
{
"mcpServers": {
"wuwa-wiki-api-mcp": {
"command": "/path/to/uv",
"args": [
"--directory",
"/path/to/wuwa-wiki-api-mcp",
"run",
"main.py"
]
}
}
}
```