MCP-wolfram-alpha
by SecretiveShell·★ 75·Score 40
MCP server connecting to Wolfram Alpha API for computational intelligence and queries.
Overview
MCP-wolfram-alpha is a specialized MCP server that enables integration with Wolfram Alpha's computational intelligence capabilities. It provides both tools for direct API queries and prompts for computational question handling. The server requires an API key configuration through environment variables and offers clear instructions for setup and debugging. While the implementation is straightforward, it focuses specifically on mathematical and computational queries through Wolfram Alpha's powerful engine.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
Choose this when you need to integrate computational intelligence and mathematical calculations into chat-based AI systems.
When NOT to choose this
Avoid if you need free API access or if Wolfram Alpha doesn't cover your specific domain knowledge requirements.
Tools this server exposes
1 tool extracted from the READMEquery_wolfram_alphaquery_wolfram_alpha(query: str) -> strQuery Wolfram Alpha API to get computational intelligence answers
Comparable tools
Installation
Installation
- Install the required dependencies (Python and uv):
``bash pip install uv ``
- Clone the repository:
``bash git clone https://github.com/SecretiveShell/MCP-wolfram-alpha.git cd MCP-wolfram-alpha ``
- Set your Wolfram Alpha API key as an environment variable:
``bash export WOLFRAM_API_KEY="your-app-id" ``
- Configure Claude Desktop with the following JSON:
``json { "mcpServers": { "MCP-wolfram-alpha": { "command": "uv", "args": [ "--directory", "/path/to/MCP-wolfram-alpha", "run", "MCP-wolfram-alpha" ], "env": { "WOLFRAM_API_KEY": "your-app-id" } } } } ``
FAQ
- What API key do I need?
- You need an App ID from Wolfram Alpha, available at https://products.wolframalpha.com/api. This is different from a regular API key.
- Which Wolfram Alpha API does this support?
- This was tested with the full results API, but may work with other Wolfram Alpha API endpoints as well.
Compare MCP-wolfram-alpha with
Last updated · Auto-generated from public README + GitHub signals.