ansible-galaxy-mcp
Provides tools for searching Ansible Galaxy collections, listing modules and roles, retrieving module and role specifications (arguments, return values, facts), and grading documentation quality, enabling AI agents to generate accurate playbooks.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@ansible-galaxy-mcpShow me the arguments for the yum module"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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 buildRun with stdio transport (default)
node dist/index.jsRun with HTTP transport
node dist/index.js --http
# or
MCP_TRANSPORT=http node dist/index.jsThe 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 8080The binary has no runtime dependencies — no Node.js or Bun needed on the target machine.
Run in development
npm run devRelated MCP server: MCP SysOperator
Tools
Tool | Description |
| Search Galaxy for collections by keyword |
| List all modules in a collection |
| List all roles in a collection |
| Get full input/output contract for a module |
| Get full input/output contract for a role |
| 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-mcpConfiguration
All configuration is via environment variables.
Variable | Default | Description |
|
| Data source: |
|
| Galaxy API base URL |
| (none) | Private Automation Hub URL (used with |
|
| Local roles directory (used with |
| (none) | Bearer token for authenticated Galaxy/Hub API access |
|
| HTTP request timeout in milliseconds |
|
| Transport: |
|
| HTTP listen port |
|
| HTTP bind address (dual-stack by default) |
|
| Enable proposed output_specs features (see below) |
|
| Log verbosity: |
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 | Skipped | Enabled |
Role grading | Based on | Penalizes missing |
Module grading | Has RETURN block or not | Checks enriched fields ( |
| 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 testHTTP transport endpoints
When running with --http:
Endpoint | Method | Description |
| POST | MCP Streamable HTTP — send JSON-RPC messages |
| GET | MCP SSE stream — receive server-initiated messages |
| DELETE | Close an MCP session |
| GET | Liveness probe — always returns |
| GET | Readiness probe — returns |
| GET | Prometheus-format metrics |
Kubernetes deployment
livenessProbe:
httpGet:
path: /healthz
port: 8080
readinessProbe:
httpGet:
path: /readyz
port: 8080Architecture
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 parserMaintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/fabiendupont/mcp-ansible-galaxy'
If you have feedback or need assistance with the MCP directory API, please join our Discord server