Mcp Agentify
Description
MCP orchestrator that converts MPC servers to agents.
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
mcp-agentify
AI-powered MCP gateway that discovers tools from backend MCP servers and routes each natural-language request to one backend tool.
Experimental. The npm package is `@steipete/mcp-agentify`. The unscoped `mcp-agentify` package belongs to an unrelated project.
Requirements
- Node.js 20.19 or newer
- An OpenAI API key
- At least one stdio MCP backend
Install
npm install --global @steipete/mcp-agentify
The installed command remains `mcp-agentify`.
Configure
Create `mcp-agentify.json`:
{
"openaiModel": "gpt-4.1-mini",
"frontendPort": 3030,
"agents": ["openai/gpt-4.1-mini"],
"backends": [
{
"id": "filesystem",
"displayName": "Workspace files",
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem@2026.1.14",
"/absolute/path/to/allowed/files"
]
},
{
"id": "browserbase",
"displayName": "Browserbase",
"type": "stdio",
"command": "npx",
"args": ["-y", "@browserbasehq/mcp@3.0.0"],
"inheritEnv": [
"BROWSERBASE_API_KEY",
"BROWSERBASE_PROJECT_ID",
"GEMINI_API_KEY"
]
}
]
}
Set credentials in the gateway process environment:
export OPENAI_API_KEY=...
export BROWSERBASE_API_KEY=...
export BROWSERBASE_PROJECT_ID=...
export GEMINI_API_KEY=...
mcp-agentify --config /absolute/path/to/mcp-agentify.json
`inheritEnv` is an explicit allowlist. Backend processes receive a minimal default environment plus only listed variables and configured `env` values. A configured value such as `"TOKEN": "${TOKEN}"` expands from the gateway environment.
MCP client
Configure the gateway as a stdio MCP server:
{
"mcpServers": {
"agentify": {
"command": "npx",
"args": [
"-y",
"@steipete/mcp-agentify",
"--config",
"/absolute/path/to/mcp-agentify.json"
],
"env": {
"OP
Related Skills
Auto Update
Pull the latest ECC repo changes and reinstall the current managed targets.
Development Ecc Guide
Navigate ECC's current agents, skills, commands, hooks, install profiles, and docs from the live repository su
Development Epic Claim
Claim an epic issue, stamp coordination state, and sync local ownership.
Development Epic Publish
Publish a validated epic update back to the issue and local cache.
Development Epic Review
Mark epic review requested, approved, or changes requested.
Development Epic Unblock
Sweep blocked epic issues and reopen anything whose dependencies are closed.
Development Related Agents
Django Build Resolver
Django/Python build, migration, and dependency error resolution specialist. Fixes pip/Poetry errors, migration
Openai Codex CLI
(55.8k ⭐) - Lightweight coding agent that runs in your terminal.
src/agents/ — 11 Agent Definitions
**Generated:** 2026-04-11