@redredchen01/foundry-mcp
v1.0.0
Published
MCP server for Skill Foundry — exposes 103 CLI commands as AI agent tools
Downloads
180
Maintainers
Readme
@redredchen01/foundry-mcp
MCP (Model Context Protocol) server for Skill Foundry — exposes 103 CLI commands as AI agent tools.
Setup
Claude Desktop / Claude Code
Add to your MCP config (~/.claude/claude_desktop_config.json):
{
"mcpServers": {
"foundry": {
"command": "npx",
"args": ["@redredchen01/foundry-mcp"]
}
}
}Cursor
Add to .cursor/mcp.json:
{
"mcpServers": {
"foundry": {
"command": "npx",
"args": ["@redredchen01/foundry-mcp"]
}
}
}Available Tools
The server automatically discovers all installed Foundry skills and exposes each command as an MCP tool.
Tool naming convention: foundry_{skill}_{command}
Examples:
foundry_dep_audit_vulnerabilities— Scan npm vulnerabilitiesfoundry_db_tools_migrate— Run database migrationsfoundry_monitoring_tools_healthcheck— HTTP health checkfoundry_secret_mgmt_generate— Generate random secretsfoundry_k8s_tools_pods— List Kubernetes pods
Meta Tools
foundry_list— List all installed skillsfoundry_agent_info— Get machine-readable schema for all tools
Agent Mode
When invoked via MCP, all commands automatically run in agent mode:
- JSON output (no human-readable text)
- Structured error codes (E1-E7)
- No ANSI colors
