ansible-galaxy-mcp
An MCP server that lets AI agents discover Ansible Galaxy collection input/output contracts, including module arguments, return values, and role facts, to help generate accurate playbooks.
README
ansible-galaxy-mcp
MCP server that exposes Ansible Galaxy collection input/output contracts. Lets AI agents discover module arguments, return values, and role facts before generating playbooks.
Quick start
npm install
npm run build
Run with stdio transport (default)
node dist/index.js
Run with HTTP transport
node dist/index.js --http
# or
MCP_TRANSPORT=http node dist/index.js
The HTTP transport exposes the MCP Streamable HTTP endpoint at /mcp plus operational endpoints (/healthz, /readyz, /metrics).
Build a standalone binary
Requires Bun:
bun build src/index.ts --compile --outfile dist/ansible-galaxy-mcp
./dist/ansible-galaxy-mcp # stdio
./dist/ansible-galaxy-mcp --http # HTTP on port 8080
The binary has no runtime dependencies — no Node.js or Bun needed on the target machine.
Run in development
npm run dev
Tools
| Tool | Description |
|---|---|
search_collections |
Search Galaxy for collections by keyword |
get_collection_modules |
List all modules in a collection |
get_collection_roles |
List all roles in a collection |
get_module_spec |
Get full input/output contract for a module |
get_role_spec |
Get full input/output contract for a role |
grade_collection |
Grade a collection's documentation quality (A-F) |
MCP client configuration
Claude Code
Add to your Claude Code settings (~/.claude/settings.json or project .claude/settings.json):
{
"mcpServers": {
"ansible-galaxy": {
"command": "/path/to/dist/ansible-galaxy-mcp"
}
}
}
Or with Node.js:
{
"mcpServers": {
"ansible-galaxy": {
"command": "node",
"args": ["/path/to/mcp-server/dist/index.js"]
}
}
}
Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"ansible-galaxy": {
"command": "/path/to/dist/ansible-galaxy-mcp",
"env": {
"LOG_LEVEL": "info"
}
}
}
}
Container (HTTP transport)
The Containerfile compiles a standalone binary with Bun and copies it into a UBI 10 micro image. The container starts in HTTP mode by default:
podman build -t ansible-galaxy-mcp .
podman run --rm -p 8080:8080 ansible-galaxy-mcp
Configuration
All configuration is via environment variables.
| Variable | Default | Description |
|---|---|---|
ANSIBLE_SOURCE_TYPE |
galaxy |
Data source: galaxy, local, or chain |
ANSIBLE_GALAXY_URL |
https://galaxy.ansible.com |
Galaxy API base URL |
ANSIBLE_HUB_URL |
(none) | Private Automation Hub URL (used with chain source) |
ANSIBLE_ROLES_PATH |
./roles |
Local roles directory (used with local or chain source) |
ANSIBLE_GALAXY_TOKEN |
(none) | Bearer token for authenticated Galaxy/Hub API access |
ANSIBLE_GALAXY_TIMEOUT |
30000 |
HTTP request timeout in milliseconds |
MCP_TRANSPORT |
stdio |
Transport: stdio or http |
MCP_HTTP_PORT |
8080 |
HTTP listen port |
MCP_HTTP_HOST |
:: |
HTTP bind address (dual-stack by default) |
ANSIBLE_OUTPUT_SPECS |
false |
Enable proposed output_specs features (see below) |
LOG_LEVEL |
info |
Log verbosity: debug, info, warn, error |
Authentication
The Galaxy/Hub API token is resolved in this order:
ANSIBLE_GALAXY_TOKENenvironment variable~/.ansible/galaxy_tokenfile (plain text)tokenfield inansible.cfg([galaxy]or[galaxy_server.*]section), searched in:$ANSIBLE_CONFIG./ansible.cfg~/.ansible.cfg/etc/ansible/ansible.cfg
This follows Ansible's own precedence. In containers, use the env var or mount the token file.
Output specs feature gate
The server supports proposed Ansible output spec features behind a feature gate. By default these are off, so the server works with existing collections today.
Set ANSIBLE_OUTPUT_SPECS=true to enable:
| Behavior | Gate off (default) | Gate on |
|---|---|---|
Role output_specs.yml lookup |
Skipped | Enabled |
| Role grading | Based on argument_specs.yml only |
Penalizes missing output_specs.yml |
| Module grading | Has RETURN block or not | Checks enriched fields (contains, required, sample) |
grade_collection role scoring |
Roles not factored into grade | Roles weighted at 40% of overall grade |
This lets you use the server today with any Galaxy collection, and progressively enable the proposed spec as collections adopt it.
Source types
galaxy(default) — Fetches data from Ansible Galaxy (or a compatible API like Private Automation Hub).local— Reads roles from a local directory. Useful for development or roles not published to Galaxy.chain— Tries local first, then Hub (if configured), then Galaxy. Useful when you have private roles that override public ones.
Tests
npm test
HTTP transport endpoints
When running with --http:
| Endpoint | Method | Description |
|---|---|---|
/mcp |
POST | MCP Streamable HTTP — send JSON-RPC messages |
/mcp |
GET | MCP SSE stream — receive server-initiated messages |
/mcp |
DELETE | Close an MCP session |
/healthz |
GET | Liveness probe — always returns {"status": "ok"} |
/readyz |
GET | Readiness probe — returns {"status": "ready"} |
/metrics |
GET | Prometheus-format metrics |
Kubernetes deployment
livenessProbe:
httpGet:
path: /healthz
port: 8080
readinessProbe:
httpGet:
path: /readyz
port: 8080
Architecture
src/
index.ts Entry point, tool registration, transport selection
http.ts Streamable HTTP transport + health/metrics endpoints
metrics.ts Prometheus-format counter registry
errors.ts Typed error classes (NotFoundError, GalaxyApiError, etc.)
logger.ts Leveled stderr logger (debug/info/warn/error)
cache.ts Generic LRU cache with TTL and metrics
types.ts TypeScript interfaces
galaxy/
client.ts Galaxy API client with caching, retry, and timeouts
source.ts Source abstraction (Galaxy, Local, Chain)
parser.ts Ansible docstring and YAML parser
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.