A MCP server to connect to wolfram alpha API. This is analogous to the !wa bang in duckduckgo search. Query Wolfram Alpha api. You must set the WOLFRAMAPIKEY environment variable. Get an api ket from Wolfram Alpha. This was tested with the full results API, but it might not be required. Since the official MCP inspector does not have good environment support, I reccommend using wong2's mcp-cli-insp
Add this skill
npx mdskills install SecretiveShell/mcp-wolfram-alphaConnects agents to Wolfram Alpha API with clear setup but overly broad permissions
1# MCP-wolfram-alpha23A MCP server to connect to wolfram alpha API.45<a href="https://glama.ai/mcp/servers/q5fud9cttp">6 <img width="380" height="200" src="https://glama.ai/mcp/servers/q5fud9cttp/badge" />7</a>89## Components1011### Prompts1213This is analogous to the `!wa` bang in duckduckgo search.1415```python16def wa(query: str) -> f"Use wolfram alpha to answer the following question: {query}"17```1819### Tools2021Query Wolfram Alpha api.2223```python24def query_wolfram_alpha(query: str) -> str25```2627## Configuration2829You **must** set the `WOLFRAM_API_KEY` environment variable. Get an api ket from [Wolfram Alpha](https://products.wolframalpha.com/api).3031This was tested with the full results API, but it might not be required.3233```json34{35 "mcpServers": {36 "MCP-wolfram-alpha": {37 "command": "uv",38 "args": [39 "--directory",40 "C:\\Users\\root\\Documents\\MCP-wolfram-alpha",41 "run",42 "MCP-wolfram-alpha"43 ],44 "env": {45 "WOLFRAM_API_KEY": "your-app-id"46 }47 }48 }49}50```5152## Development5354### Debugging5556Since the official MCP inspector does not have good environment support, I reccommend using wong2's [mcp-cli-inspector](https://github.com/wong2/mcp-cli).5758Create a config.json file in the same style as claude desktop.5960```json61{62 "mcpServers": {63 "MCP-wolfram-alpha": {64 "command": "uv",65 "args": [66 "--directory",67 "/full/path/to/MCP-wolfram-alpha",68 "run",69 "MCP-wolfram-alpha"70 ],71 "env": {72 "WOLFRAM_API_KEY": "your-app-id"73 }74 }75 }76}77```7879Then run:8081```bash82npx @wong2/mcp-cli -c .\config.json83```84
Full transparency — inspect the skill content before installing.