Metadata-Version: 2.4
Name: axm-mcp
Version: 0.3.0
Summary: AXM MCP Server — Runtime execution for the axm-protocols ecosystem
Project-URL: Homepage, https://github.com/axm-protocols/axm-nexus-mcp
Project-URL: Documentation, https://axm-protocols.github.io/axm-mcp/
Project-URL: Repository, https://github.com/axm-protocols/axm-nexus-mcp.git
Project-URL: Issues, https://github.com/axm-protocols/axm-nexus-mcp/issues
Author-email: Gabriel Jarry <gabriel@axm-protocols.io>
License: Apache-2.0
License-File: LICENSE
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Typing :: Typed
Requires-Python: >=3.12
Requires-Dist: axm
Requires-Dist: cyclopts>=4.5.1
Requires-Dist: jinja2>=3.0.0
Requires-Dist: mcp[cli]>=1.25.0
Provides-Extra: all
Requires-Dist: axm-ast; extra == 'all'
Requires-Dist: axm-audit; extra == 'all'
Requires-Dist: axm-bib; extra == 'all'
Requires-Dist: axm-engine; extra == 'all'
Requires-Dist: axm-git; extra == 'all'
Requires-Dist: axm-init; extra == 'all'
Requires-Dist: axm-ticket; extra == 'all'
Provides-Extra: ast
Requires-Dist: axm-ast; extra == 'ast'
Provides-Extra: audit
Requires-Dist: axm-audit; extra == 'audit'
Provides-Extra: bib
Requires-Dist: axm-bib; extra == 'bib'
Provides-Extra: engine
Requires-Dist: axm-engine; extra == 'engine'
Provides-Extra: forge
Requires-Dist: axm-ast; extra == 'forge'
Requires-Dist: axm-audit; extra == 'forge'
Requires-Dist: axm-init; extra == 'forge'
Provides-Extra: git
Requires-Dist: axm-git; extra == 'git'
Provides-Extra: init
Requires-Dist: axm-init; extra == 'init'
Provides-Extra: ticker
Requires-Dist: axm-ticket; extra == 'ticker'
Description-Content-Type: text/markdown

<p align="center">
  <img src="https://raw.githubusercontent.com/axm-protocols/axm-forge/main/assets/logo.png" alt="AXM Logo" width="180" />
</p>

<p align="center">
  <strong>axm-mcp — MCP server for the axm-protocols ecosystem</strong>
</p>

<p align="center">
  <a href="https://github.com/axm-protocols/axm-nexus/actions/workflows/ci.yml"><img src="https://github.com/axm-protocols/axm-nexus/actions/workflows/ci.yml/badge.svg" alt="CI"></a>
  <a href="https://forge.axm-protocols.io/audit/"><img src="https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/axm-protocols/axm-nexus/gh-pages/badges/axm-mcp/axm-audit.json" alt="axm-audit"></a>
  <a href="https://github.com/axm-protocols/axm-nexus/actions/workflows/axm-quality.yml"><img src="https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/axm-protocols/axm-nexus/gh-pages/badges/axm-mcp/coverage.json" alt="Coverage"></a>
  <a href="https://pypi.org/project/axm-mcp/"><img src="https://img.shields.io/pypi/v/axm-mcp" alt="PyPI"></a>
  <img src="https://img.shields.io/badge/python-3.12%2B-blue" alt="Python 3.12+">
  <a href="https://nexus.axm-protocols.io/"><img src="https://img.shields.io/badge/docs-live-brightgreen" alt="Docs"></a>
</p>

---

## Features

- 🔌 **Auto-discovery** — Finds all `axm.tools` entry points from installed packages
- 🛠️ **MCP bridge** — Exposes discovered tools as Model Context Protocol callables
- ✅ **Verify** — One-shot project quality check: audit + init check + AST enrichment
- 🌐 **Web fetch** — Anti-bot web page fetching via Scrapling (basic / dynamic / stealth)
- 📋 **List tools** — Built-in meta-tool to list all available tools and descriptions
- 📂 **Tool catalog resource** — `axm://tools` MCP resource for passive tool discovery

## Installation

```bash
uv add axm-mcp
```

With all AXM tools:

```bash
uv add "axm-mcp[all]"
```

## Quick Start

```bash
# Start in stdio mode (default — backward-compatible)
axm-mcp

# Start as Streamable HTTP server (default port 9427)
axm-mcp serve

# Check server status
axm-mcp status

# Stop the running server
axm-mcp stop
```

All installed AXM tools are immediately available to any MCP client.

## Server Modes

axm-mcp supports two transport modes:

| Mode | Command | Client config | Use case |
|---|---|---|---|
| **stdio** | `axm-mcp` | `{"command": "uv", "args": ["run", "axm-mcp"]}` | One process per conversation (legacy) |
| **HTTP** | `axm-mcp serve` | `{"type": "url", "url": "http://localhost:9427/mcp"}` | Single shared server, persistent cache |

**stdio** forks a new process per conversation. Simple, but duplicates memory and has no shared state.

**HTTP** (Streamable HTTP) runs one persistent server that all conversations share — AST cache, protocol sessions, and tool state are preserved across calls. This is the recommended mode.

### `.mcp.json` configuration

**stdio** (Claude Code):

```json
{
  "mcpServers": {
    "axm-mcp": {
      "command": "uv",
      "args": ["run", "axm-mcp"]
    }
  }
}
```

**HTTP** (Claude Code):

```json
{
  "mcpServers": {
    "axm-mcp": {
      "type": "url",
      "url": "http://localhost:9427/mcp"
    }
  }
}
```

Place this in `~/.claude/.mcp.json` (global) or `.mcp.json` at the project root.

## CLI Commands

| Command | Description |
|---|---|
| `axm-mcp` | Start in **stdio** mode (backward-compatible default) |
| `axm-mcp serve [--host HOST] [--port PORT]` | Start Streamable HTTP server (default port `9427`) |
| `axm-mcp status [--host HOST] [--port PORT]` | Check whether the HTTP server is running |
| `axm-mcp stop` | Send SIGTERM to the running HTTP server |
| `axm-mcp install [--port PORT] [--binary PATH]` | Install axm-mcp as a launchd service (macOS) |
| `axm-mcp uninstall` | Remove the launchd service |

The HTTP transport exposes a `/health` endpoint returning `{"status": "ok", "tools_count": N}`.
Port can also be set via the `AXM_MCP_PORT` environment variable.

## Service Management (macOS)

`axm-mcp` can run as a persistent background service managed by launchd:

```bash
# Install and start the service
axm-mcp install

# Remove the service
axm-mcp uninstall
```

`install` locates the `axm-mcp` binary, generates a launchd plist, and loads it via `launchctl`.
`uninstall` unloads the service and removes the plist file.

## MCP Tools

| Tool | Package | Description |
|---|---|---|
| `list_tools` | built-in | List all available tools |
| `verify` | built-in | One-shot audit + init check + AST enrichment |
| `web_fetch` | built-in | Fetch web pages with anti-bot bypass (basic / dynamic / stealth) |
| `axm://tools` | built-in | MCP resource — passive tool catalog (via `read_resource`) |
| `audit` | `axm-audit` | Code quality audit (lint, types, complexity, security) |
| `init_check` | `axm-init` | 39 governance checks against AXM gold standard |
| `init_scaffold` | `axm-init` | Scaffold a new Python project |
| `bib_search` | `axm-bib` | Search academic papers by title |
| `bib_doi` | `axm-bib` | Resolve DOI → BibTeX |
| `bib_pdf` | `axm-bib` | Download paper PDF |
| `bib_extract` | `axm-bib` | Extract text from PDF |

## Development

This package is part of the **axm-nexus** workspace.

```bash
git clone https://github.com/axm-protocols/axm-nexus.git
cd axm-nexus
uv sync --all-groups
uv run --package axm-mcp --directory packages/axm-mcp pytest -x -q
```

## License

Apache-2.0 — © 2026 Gabriel Jarry
