1. Conduid
  2. Developer Tools
  3. Ax MCP
MCP server · Developer Tools

Ax MCP

Axiomatic_AI MCP Server

Unclaimed MIT last commit 6 months ago devtools
64Good

Scored yesterday · breakdown

About Ax MCP

Ax MCP is an MCP server published by Axiomatic-AI in the Developer Tools category: axiomatic_AI MCP Server. It has been installed 0 times through Conduid.

The repository has 18 stars and 7 forks, with the last commit 6 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx ax-mcp

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Ax MCP

Powered by Claude · Grounded in docs

I know everything about Ax MCP. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

Releases

v0.1.18v0.1.18 · 27 Aug 2026What's Changed Refactor equations server by @javier-ballester-arenas in https://github.com/Axiomatic-AI/ax-mcp/pull/106 Fix equation tools for external users + drop V2 model-fitter branding by @AXSaketh in…
v0.1.17v0.1.17 - new model_fitter MCP · 11 Jun 2026What's Changed Adding in the execute/ and write_code/ endpoints from the API as tools to MCP to be routed into Lemma. by @AXSaketh in https://github.com/Axiomatic-AI/ax-mcp/pull/104 Release 0.1.17: NEW MODEL FITTER MCP by @AXSaketh in…
v0.1.16v0.1.16 - cov estimation and argmin MCP · 20 Feb 2026What's Changed fix: adding more robust handling of sigfigs in plot parser mcp by @bpyoax in https://github.com/Axiomatic-AI/ax-mcp/pull/59 feat: Add parameter covariance estimation tool to model fitter by @frankschae in…
v0.1.15v0.1.15 – Add back Model Fitter with improved backend functionality · 14 Nov 2025New release, adding back the model fitter What's Changed fix:pin gdsfactory dependency by @AdriantrejoAx in https://github.com/Axiomatic-AI/ax-mcp/pull/54 chore: add back ax model fitter server by @frankschae in…
v0.1.14v0.1.14 – Configurable API URL & Dependency Pin · 3 Nov 2025What's Changed feat: add option to change API_URL from config by @a96lex in https://github.com/Axiomatic-AI/ax-mcp/pull/50 quick fix: pin moesifasgi version by @carlosarriAX in https://github.com/Axiomatic-AI/ax-mcp/pull/52 Full…

README

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, document processing, and photonic circuit design.

🚀 Quickstart

1. Check system requirements

  • Python
  • uv
  • install extra packages (optional)
    • If you wish to use the AxPhotonicsPreview, you will need to install extra dependencies before continuing. After installing uv, run uv tool install "axiomatic-mcp[pic]".

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 (all except AxPhotonicsPreview)

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

Install MCP Server

  1. Open Claude Desktop settings → Developer → Edit MCP config
  2. Add this configuration:
{
  "mcpServers": {
    "axiomatic-mcp": {
      "command": "uvx",
      "args": ["--from", "axiomatic-mcp", "all"],
      "env": {
        "AXIOMATIC_API_KEY": "your-api-key-here"
      }
    }
  }
}
  1. Restart Claude Desktop

Follow the MCP install guide and use the standard configuration above. See the official instructions here: Gemini CLI MCP Server Guide

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

Follow the Windsurf MCP documentation. Use the standard configuration above.

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

Click the button to install:

Install MCP Server

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

"env": {
  "AXIOMATIC_API_KEY": "your-api-key-here"
}

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

[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

Use this server configuration:

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

Note: This installs all tools except for AxPhotonicsPreview 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:
{
  "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.

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.

🔬 AxPhotonicsPreview

Design photonic integrated circuits using natural language descriptions. Additional requirements are needed, please refer to Check system requirements

📊 AxPlotToData

Extract numerical data from plot images for analysis and reproduction.

⚙️ AxModelFitter

Fit parametric models or digital twins to observational data using advanced statistical analysis and optimization algorithms.

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

README mirrored from the source repository yesterday. The original is authoritative.

Questions

About Ax MCP

How do I install Ax MCP?

Run npx ax-mcp, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Ax MCP safe to use with an AI agent?

Its trust score is 64 out of 100 (good). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Ax MCP still maintained?

Yes — the latest release is v0.1.18 (27 Aug 2026), and the last commit was 6 months ago. The repository has 18 stars and 0 open issues.