trackmcp
Back to directory
secretiveshell

MCP-wolfram-alpha

View on GitHub

Connect your chat repl to wolfram alpha computational intelligence

75 stars PythonOthers Updated Jul 5, 2026
mcpmcp-serverwolframwolfram-alpha

Documentation

# MCP-wolfram-alpha

A MCP server to connect to wolfram alpha API.

## Components

### Prompts

This is analogous to the `!wa` bang in duckduckgo search.

python
def wa(query: str) -> f"Use wolfram alpha to answer the following question: {query}"

### Tools

Query Wolfram Alpha api.

python
def query_wolfram_alpha(query: str) -> str

## Configuration

You must set the `WOLFRAM_API_KEY` environment variable. Get an api ket from Wolfram Alpha.

This was tested with the full results API, but it might not be required.

json
{
    "mcpServers": {
        "MCP-wolfram-alpha": {
            "command": "uv",
            "args": [
                "--directory",
                "C:\\Users\\root\\Documents\\MCP-wolfram-alpha",
                "run",
                "MCP-wolfram-alpha"
            ],
            "env": {
                "WOLFRAM_API_KEY": "your-app-id"
            }
        }
    }
}

## Development

### Debugging

Since the official MCP inspector does not have good environment support, I reccommend using wong2's mcp-cli-inspector.

Create a config.json file in the same style as claude desktop.

json
{
    "mcpServers": {
        "MCP-wolfram-alpha": {
            "command": "uv",
            "args": [
                "--directory",
                "/full/path/to/MCP-wolfram-alpha",
                "run",
                "MCP-wolfram-alpha"
            ],
            "env": {
                "WOLFRAM_API_KEY": "your-app-id"
            }
        }
    }
}

Then run:

bash
npx @wong2/mcp-cli -c .\config.json

Frequently asked questions

What is MCP-wolfram-alpha?

MCP-wolfram-alpha is Connect your chat repl to wolfram alpha computational intelligence

How do I install MCP-wolfram-alpha?

Open the GitHub repository and follow its README. Most MCP servers are added to your client's MCP config, then called by your agent.

Is MCP-wolfram-alpha open source?

Yes — it is hosted on GitHub at https://github.com/secretiveshell/mcp-wolfram-alpha and has 75 stars.

Related MCP tools

Run your own MCP server? See who uses it and what to fix.

Measure it with TrackMCP