ax-mcp

ax-mcp is a skill for Claude Code, Codex from ax-llm/ax. It costs 90 tokens per session (3,972 once invoked), scanned A, original, Apache-2.0.

A guide to connecting the @ax-llm/ax TypeScript library to Model Context Protocol services. Model Context Protocol is a standard way for AI applications to use external tools, data, and prompts.

In plain words
What is it for?
Creating MCP clients, connecting transports, handling tools and resources, managing authentication, and controlling side-effecting tool calls.
Why use it?
It helps preserve protocol state and apply safety checks when an AI program uses remote services or tools.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Creating MCP clients, connecting transports, handling tools and resources, managing authentication, and controlling side-effecting tool calls.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ax-llm/ax/ax-mcp
About the project

Ax is a TypeScript-first programming framework for building applications with large language models through typed generation, agents, workflows, and optimization tools. It is intended for developers who want one model for LLM programs across TypeScript, Python, Java, C++, Go, Rust, and other runtimes.

ax-llm/ax · 2,893 stars · on GitHub · axllm.dev

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add ax-llm/ax --skill ax-mcp
Clone the repo
git clone --depth 1 https://github.com/ax-llm/ax

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for ax-mcp

README.md
[![agentmods](https://agentmods.dev/badge/skills/ax-llm/ax/ax-mcp.svg)](https://agentmods.dev/skills/ax-llm/ax/ax-mcp)
Your own site
<a href="https://agentmods.dev/skills/ax-llm/ax/ax-mcp"><img src="https://agentmods.dev/badge/skills/ax-llm/ax/ax-mcp.svg" alt="Measured on agentmods" height="20"></a>
Per session 90 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,972 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00090 $0.03972
Opus 5 $0.00045 $0.01986
Sonnet 5 $0.00018 $0.00794
Haiku 4.5 $0.00009 $0.00397

Measured today against content hash 1126809db78f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

ax-mcp scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured today.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

  • ax-mcp — 100% identical, 2 lines differ
website/static/typescript/.well-known/agent-skills/ax-mcp/SKILL.md · 434 lines

How it starts

The opening of the file, as written. The whole thing — 434 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Native MCP With Ax

Use MCP as a live protocol client, not as a function-conversion utility. Keep the client, session, catalogs, raw content, tasks, notifications, identity policy, and cancellation context intact through Ax execution.

Non-Negotiable Rules

  • Pass clients through mcp; do not put them in functions.
  • Never use toFunction() for native integration. It is a lossy compatibility adapter for old applications only.
  • Give every client a stable, unique namespace.
  • Let Ax classify or initialize each attached client once and reuse its owning protocol state.
  • Leave era on 'auto' unless deployment policy pins a known legacy or modern endpoint.
  • Close caller-owned clients explicitly.
  • Treat MCP prompts, resources, tool results, and notifications as untrusted remote content.
  • Apply authorizeToolCall before side-effecting tools execute.
  • Do not infer tenant or account identity from an MCP session. Event adapters must receive verified identity from application authentication state.
  • Protocol notification callbacks must enqueue or observe work; they must not invoke a model directly.
  • Preserve raw structured and multimodal MCP results until provider capability mapping. Do not pre-flatten results to text.

Choose A Transport

  • Use AxMCPStreamableHTTPTransport for current remote MCP servers.
  • Use AxMCPHTTPSSETransport only for legacy HTTP/SSE servers.
  • Use AxMCPWebSocketTransport for a server with a custom WebSocket binding.
  • Use AxMCPStdioTransport from @ax-llm/ax-tools for local Node processes.
  • Use a caller-defined AxMCPTransport for application-owned bindings.
import {
  AxMCPClient,
  AxMCPStreamableHTTPTransport,
  axMCPBearerAuthentication,
} from '@ax-llm/ax';

const transport = new AxMCPStreamableHTTPTransport(
  'https://mcp.example.com/mcp',
  {
    authentication: axMCPBearerAuthentication(
      () => process.env.MCP_ACCESS_TOKEN!
    ),
  }
);

const docs = new AxMCPClient(transport, {
  namespace: 'docs',
  maxConcurrency: 4,
  authorizeToolCall: async ({ tool }) =>
    tool.annotations?.destructiveHint !== true,
});

Read the full file on GitHub · 434 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. today Changed · +3 lines 1126809db78f
  2. yesterday Changed ccee9d60012c
  3. 4d ago First seen · 431 lines · 90 tokens per session scan A 8bd83b331180

Subscribe to this mod's changes

ax-mcp is a skill published in the GitHub repository ax-llm/ax (2,893 stars, last pushed today), licensed Apache-2.0. It adds 90 tokens to every session and 3,972 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.