trackmcp
Back to directory

Axiomatic_AI MCP Server

7 stars PythonAI & Machine Learning Updated Oct 18, 2025

Documentation

Axiomatic MCP Servers

Static Badge

MCP (Model Context Protocol) servers that provide AI assistants with access to the Axiomatic_AI Platform - a suite of advanced tools for scientific computing and document processing.

๐Ÿš€ Quickstart

1. Check system requirements

2. Install your favourite client

Cursor installation

3. Get an API key

Static Badge

> You will receive an API key by email shortly after filling the form. Check your spam folder if it doesn't arrive.

4. Install Axiomatic Operators

โšก Claude Code

bash
claude mcp add axiomatic-mcp --env AXIOMATIC_API_KEY=your-api-key-here -- uvx --from axiomatic-mcp all

๐Ÿ”ท Cursor

Install MCP Server

๐Ÿค– Claude Desktop

1. Open Claude Desktop settings โ†’ Developer โ†’ Edit MCP config

2. Add this configuration:

json
{
  "mcpServers": {
    "axiomatic-mcp": {
      "command": "uvx",
      "args": ["--from", "axiomatic-mcp", "all"],
      "env": {
        "AXIOMATIC_API_KEY": "your-api-key-here"
      }
    }
  }
}

3. Restart Claude Desktop

๐Ÿ”ฎ Gemini CLI

Follow the MCP install guide and use the standard configuration above.

See the official instructions here: Gemini CLI MCP Server Guide

json
{
  "axiomatic-mcp": {
    "command": "uvx",
    "args": ["--from", "axiomatic-mcp", "all"],
    "env": {
      "AXIOMATIC_API_KEY": "your-api-key-here"
    }
  }
}

๐ŸŒฌ๏ธ Windsurf

Follow the Windsurf MCP documentation.

Use the standard configuration above.

json
{
  "axiomatic-mcp": {
    "command": "uvx",
    "args": ["--from", "axiomatic-mcp", "all"],
    "env": {
      "AXIOMATIC_API_KEY": "your-api-key-here"
    }
  }
}

๐Ÿงช LM Studio

Click the button to install:

Install MCP Server

> Note: After installing via the button, open LM Studio MCP settings and add:

>

> ```json

> "env": {

> "AXIOMATIC_API_KEY": "your-api-key-here"

> }

> ```

๐Ÿ’ป Codex

Create or edit the configuration file `~/.codex/config.toml` and add:

toml
[mcp_servers.axiomatic-mcp]
command = "uvx"
args = ["--from", "axiomatic-mcp", "all"]
env = { AXIOMATIC_API_KEY = "your-api-key-here" }

For more information, see the Codex MCP documentation

๐ŸŒŠ Other MCP Clients

Use this server configuration:

json
{
  "command": "uvx",
  "args": ["--from", "axiomatic-mcp", "all"],
  "env": {
    "AXIOMATIC_API_KEY": "your-api-key-here"
  }
}

> Note: This installs all tools under one server. If you experience other issues, try individual servers instead.

Reporting Bugs

Found a bug? Please help us fix it by creating a bug report.

Connect on Discord

Join our Discord to engage with other engineers and scientists using Axiomatic Operators. Ask for help, discuss bugs and features, and become a part of the Axiomatic community!

Static Badge

Troubleshooting

Cannot install in Conda environment

It's not recommended to install axiomatic operators inside a conda environment. `uv` handles seperate python environments so it is safe to run "globally" without affecting your existing Python environments

Server not appearing in Cursor

1. Restart Cursor after updating MCP settings

2. Check the Output panel (View โ†’ Output โ†’ MCP) for errors

3. Verify the command path is correct

The "Add to cursor" button does not work

We have seen reports of the cursor window not opening correctly. If this happens you may manually add to cursor by:

1. Open cursor

2. Go to "Settings" > "Cursor Settings" > "MCP & Integration"

3. Click "New MCP Server"

4. Add the following configuration:

code
{
  "mcpServers": {
    "axiomatic-mcp": {
      "command": "uvx --from axiomatic-mcp all",
      "env": {
        "AXIOMATIC_API_KEY": "YOUR API KEY"
      },
      "args": []
    }
  }
}

Multiple servers overwhelming the LLM

Install only the domain servers you need. Each server runs independently, so you can add/remove them as needed.

API connection errors

1. Verify your API key is set correctly

2. Check internet connection

Tools not appearing

If you experience any issues such as tools not appearing, it may be that you are using an old version and need to clear uv's cache to update it.

bash
uv cache clean

Then restart your MCP client (e.g. restart Cursor).

This clears the uv cache and forces fresh downloads of packages on the next run.

Individual servers

You may find more information about each server and how to install them individually in their own READMEs.

๐Ÿ–Œ๏ธ AxEquationExplorer

Compose equation of your interest based on information in the scientific paper.

๐Ÿ“„ AxDocumentParser

Convert PDF documents to markdown with advanced OCR and layout understanding.

๐Ÿ“ AxDocumentAnnotator

Create intelligent annotations for PDF documents with contextual analysis, equation extraction, and parameter identification.

๐Ÿ“Š AxPlotToData

Extract numerical data from plot images for analysis and reproduction.

โš™๏ธ AxModelFitter

Fit parametric models or digital twins to observational data. Describe the model and data in plain language โ€” the server generates executable JAX fitting code and runs it in a sandboxed environment.

โš™๏ธ AxModelFitter (Legacy)

Deprecated โ€” superseded by AxModelFitter above; will be removed in the next major release.

๐Ÿงฎ AxArgmin

Numerical optimization, rootfinding, ODE simulation, and optimal control. Describe the problem in plain language โ€” the server generates and runs the corresponding code in a sandboxed environment.

๐Ÿ“š AxKnowledgeBase

Semantic search over Axiomatic's curated Knowledge Base โ€” scientific papers, entities, and passages, always returned with their source for citation.

๐Ÿ”Ž AxPaperSearch

Search arXiv and OpenAlex for scientific papers โ€” abstracts, authors, DOIs, citation counts, and direct PDF links.

๐ŸŒŠ AxTidy3D

Generate and run Tidy3D electromagnetic simulations (FDTD, mode solving) from natural language, with a cost-safe estimate-then-confirm flow for cloud runs.

๐Ÿ’ก AxMeep

Generate and run Meep FDTD simulations from natural language. Simulations run as remote jobs; figures come back as inline images and arrays are summarized and saved locally. Requires an API key with playground access.

Requesting Features

Have an idea for a new feature? We'd love to hear it! Submit a feature request and:

  • Describe the problem your feature would solve
  • Explain your proposed solution
  • Share any alternatives you've considered
  • Provide specific use cases

Support

Frequently asked questions

What is ax-mcp?

ax-mcp is Axiomatic_AI MCP Server

How do I install ax-mcp?

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 ax-mcp open source?

Yes โ€” it is hosted on GitHub at https://github.com/axiomatic-ai/ax-mcp and has 7 stars.

Related MCP tools

All-Hands-AIopenhands

๐Ÿ™Œ OpenHands: Code Less, Make More for the Model Context Protocol. Enhance AI assistants with powerful integrations. Python-based implementation.

64,677 Python
agentartificial-intelligencechatgpt+6
mem0aimem0

Universal memory layer for AI Agents; Announcing OpenMemory MCP - local and secure memory management. Python-based implementation.

42,646 Python
agentsaiai-agents+12
zhayujiechatgpt-on-wechat

ๅŸบไบŽๅคงๆจกๅž‹ๆญๅปบ็š„่Šๅคฉๆœบๅ™จไบบ๏ผŒๅŒๆ—ถๆ”ฏๆŒ ๅพฎไฟกๅ…ฌไผ—ๅทใ€ไผไธšๅพฎไฟกๅบ”็”จใ€้ฃžไนฆใ€้’‰้’‰ ็ญ‰ๆŽฅๅ…ฅ๏ผŒๅฏ้€‰ๆ‹ฉChatGPT/Claude/DeepSeek/ๆ–‡ๅฟƒไธ€่จ€/่ฎฏ้ฃžๆ˜Ÿ็ซ/้€šไน‰ๅƒ้—ฎ/ Gemini/GLM-4/Kimi/LinkAI๏ผŒ่ƒฝๅค„็†ๆ–‡ๆœฌใ€่ฏญ้Ÿณๅ’Œๅ›พ็‰‡๏ผŒ่ฎฟ้—ฎๆ“ไฝœ็ณป็ปŸๅ’Œไบ’่”็ฝ‘๏ผŒๆ”ฏๆŒๅŸบไบŽ่‡ชๆœ‰็Ÿฅ่ฏ†ๅบ“่ฟ›่กŒๅฎšๅˆถไผไธšๆ™บ่ƒฝๅฎขๆœใ€‚

39,573 Python
aiai-agentchatgpt+17
assafelovicgpt-researcher

An LLM agent that conducts deep research (local and web) on any given topic and generates a long report with citations. Built for the Model Context Protocol to

24,026 Python
agentaiautomation+8
jlowinfastmcp

๐Ÿš€ The fast, Pythonic way to build MCP servers and clients Trusted by 19900+ developers. Trusted by 19900+ developers. Trusted by 19900+ developers.

19,927 Python
agentsfastmcpllms+6
1Panel-devmaxkb

๐Ÿ”ฅ MaxKB is an open-source platform for building enterprise-grade agents. MaxKB ๆ˜ฏๅผบๅคงๆ˜“็”จ็š„ๅผ€ๆบไผไธš็บงๆ™บ่ƒฝไฝ“ๅนณๅฐใ€‚ for the Model Context Protocol. Enhance AI assistants with po

19,062 Python
agentagentic-aichatbot+11

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

Measure it with TrackMCP