WoW Armory MCP Server
Enables AI assistants to look up World of Warcraft character information and reputation from Blizzard's Armory website.
README
WoW Armory MCP Server
A Model Context Protocol (MCP) server that provides access to World of Warcraft Armory data and functionality.
Overview
This MCP server enables AI assistants to interact with World of Warcraft character information through Blizzard's Armory website, providing tools for character lookups and reputation tracking.
Prerequisites
- Python 3.8 or higher
- uv package manager
- Git
Installation
-
Clone the repository:
git clone <repository-url> cd wow-armory-mcp -
Set up virtual environment:
uv venv -
Install dependencies:
uv pip install -r pyproject.toml
Note: The command installs dependencies from
pyproject.tomlrather than a traditionalrequirements.txtfile.
Configuration
Claude Desktop Integration
To use this MCP server with Claude Desktop, add the following configuration to your Claude Desktop settings:
Location of config file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
Configuration:
{
"mcpServers": {
"wow-armory": {
"command": "uv",
"args": [
"--directory",
"/path/to/your/wow-armory-mcp",
"run",
"server.py"
]
}
}
}
Important: Replace
/path/to/your/wow-armory-mcpwith the actual absolute path to your cloned repository.
Environment Variables
If your server requires API credentials or configuration, create a .env file in the project root:
# Add any required environment variables here
# Example:
# WOW_API_KEY=your_api_key_here
Usage
Once configured, restart Claude Desktop. The WoW Armory server will automatically start when Claude needs to access WoW-related information.
Available Tools
The server provides tools for interacting with WoW Armory data:
- Character Information - Get detailed character information including level, class, race, and gear
- Character Reputation - Retrieve character reputation standings with various factions
Development
Running the Server Manually
For development and testing:
# Activate the virtual environment
source .venv/bin/activate # On Windows: .venv\Scripts\activate
# Run the server
python server.py
Project Structure
wow-armory-mcp/
├── server.py # Main MCP server implementation
├── pyproject.toml # Project dependencies and metadata
├── .env # Environment variables (create this)
├── README.md # This file
└── src/ # Source code directory
├── __init__.py
├── armory/ # Armory API client
├── tools/ # MCP tool implementations
└── utils/ # Utility functions
Troubleshooting
Common Issues
-
"Command not found: uv"
- Install uv following the official documentation
-
"Permission denied" errors
- Ensure the path in your Claude Desktop config uses forward slashes, even on Windows
- Verify the absolute path is correct
-
API authentication failures
- Verify any required API credentials are properly configured
- Check your
.envfile if authentication is required
-
Server won't start
- Verify all dependencies are installed:
uv pip list - Check the server logs for specific error messages
- Verify all dependencies are installed:
Debugging
Enable debug logging by setting the environment variable:
export MCP_LOG_LEVEL=debug
Contributing
- Fork the repository
- Create a feature branch:
git checkout -b feature-name - Make your changes and add tests
- Commit your changes:
git commit -am 'Add some feature' - Push to the branch:
git push origin feature-name - Submit a pull request
License
MIT License
Copyright (c) 2025 Daniel Franklin
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Support
For issues and questions:
- Open an issue on GitHub
- Check the MCP documentation
- Review Blizzard's Armory website documentation
Changelog
[1.0.0-beta] - 08-27-2025
- Initial release
- Basic character and guild lookup functionality
- Integration with Claude Desktop
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.