Atom MCP Server

ATOM Inference Price Index — AI pricing intelligence for agents and developers. 1,600+ SKUs, 40+ vendors, 14 AIPI indexes, 8 tools.

Remote serverstreamable-httpTypeScript

What is the Atom MCP server?

Atom MCP server is a hosted integration for AI assistants that speak the Model Context Protocol. ATOM Inference Price Index — AI pricing intelligence for agents and developers. 1,600+ SKUs, 40+ vendors, 14 AIPI indexes, 8 tools.

What you get

The Global Price Benchmark for AI Inference, delivered as a native tool for AI agents.

The Global Price Benchmark for AI Inference. Independent pricing intelligence for developers, analysts, and infrastructure buyers. Transparent methodology, deterministic indexing, weekly market intelligence across the global AI inference market.

Setting it up

Being a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.

What the assistant can call

Once Atom is connected, these are the calls the assistant has available:

  • list_vendors — Free
  • get_kpis — Free
  • get_model_intelligence — Free
  • get_index_benchmarks — Free
  • get_market_stats — Tiered
  • search_models — Tiered
  • get_model_detail — Tiered
  • compare_prices — Tiered
  • get_vendor_catalog — Tiered

Configuration and credentials

You will need 2 environment variables: SUPABASE_URL, SUPABASE_ANON_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Before you rely on it

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 9 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Atom.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the atom mcp server does with a few real requests.

Choosing this one

This sits in the developer tooling group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Atom's toolset — list_vendors, get_kpis, get_model_intelligence and 6 more — is a fair guide to whether it matches your workflow. It is maintained by a7om-ai; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Atom's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Available tools

ToolWhat it does
list_vendorsFree
get_kpisFree
get_model_intelligenceFree
get_index_benchmarksFree
get_market_statsTiered
search_modelsTiered
get_model_detailTiered
compare_pricesTiered
get_vendor_catalogTiered

How to install the Atom MCP server

Add to your MCP client config:

```json
{
  "mcpServers": {
    "atom-pricing": {
      "command": "node",
      "args": ["/path/to/atom-mcp-server/dist/index.js"],
      "env": {
        "SUPABASE_URL": "https://jonncmzxvxzwyaznokba.supabase.co",
        "SUPABASE_ANON_KEY": "your-anon-key"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
SUPABASE_URLEndpoint or connection string the server talks to.Yes
SUPABASE_ANON_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Atom to list vendors.
  • Use Atom to get kpis.
  • Use Atom to get model intelligence.

Frequently asked questions

It connects Atom to MCP-compatible AI assistants such as Claude and Cursor, exposing 9 tools (list_vendors, get_kpis, get_model_intelligence, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Atom directly.