| name | commander-mcp |
| description | Access commander-mcp for ALL infrastructure data, skills, and methodology |
| disable-model-invocation | false |
Commander MCP โ Your Single Source of Truth
ALL infrastructure data, methodology, and project context lives in commander-mcp (dev-02:30040).
Do NOT hardcode IPs, ports, credentials, or service info. Query at runtime.
MCP Tools Available (86 tools)
Get Skills (replaces local /skill-name loading)
get_skill(name) โ get full skill content by name
list_skills() โ list all available skills
search_skills(query) โ search skills by content
Get Infrastructure Data (replaces config YAML files)
get_context_servers โ server landscape (IPs, specs, status)
get_context_ports โ port allocations
get_context_databases โ database configs and credentials
get_context_services โ service catalog with health
get_context_repos โ git repository list
get_context_cicd โ CI/CD pipeline config
get_context_environment โ env vars for all services
CMDB Queries (live infrastructure graph)
list_servers, get_server(key) โ server details from ArangoDB
list_services, get_service(key) โ service details
list_ports, get_port(key) โ port mappings
query_dependencies(key, direction) โ dependency graph traversal (upstream/downstream/both)
get_topology() โ full infrastructure topology
search_infra(query) โ search across all infrastructure
SDLC / Pipeline (development workflow)
get_stage_instructions(stage) โ what to do at each pipeline stage
list_pipeline_runs, create_pipeline_run โ manage runs
list_work_items, create_work_item โ work items
list_scenarios, get_scenario โ test scenarios
transition_work_item(id, status) โ move items through statuses
Credentials
list_credentials โ list available credentials
get_credential(name) โ get credential value securely
Agent Coordination
agent_heartbeat โ report agent status
log_agent_event โ log events for audit
log_cost_event โ track API costs
Direct REST Endpoints (for SSH/curl access)
When MCP tools aren't available (e.g., on a remote server via SSH):
curl -s 'http://localhost:30040/skill/<name>'
curl -s 'http://localhost:30040/context/<type>'
curl -s 'http://localhost:30040/skill-catalog'
curl -s 'http://localhost:30040/health'
Key Principle
Never hardcode infrastructure data. Always query commander-mcp at runtime.
When you need server IPs, port numbers, credentials, or service configs โ use the tools above.