A local web app for managing AI coding tool configurations. Manage MCP servers, agent skills, rules, subagents, hooks, and API credentials all in one place. Sync them to the supported AI providers.
- MCP Servers — Add, edit, enable/disable, and sync MCP server configs to supported tools
- Agent Skills — Create and manage SKILL.md skills; sync to provider skill directories or projects
- Rules — Manage AGENTS.md rules and Cursor
.mdcrules; sync to provider rule paths - Subagents — Define and sync subagent markdown files across tools
- Hooks — Configure event-driven automations for Claude Code
- Plugins — Manage OpenCode plugins
- API Credentials — Store API keys and secrets locally, masked with reveal toggle
- Settings — Export/import config, reset to defaults
- Claude Code
- Cursor
- VS Code
- OpenCode
Pre-built binaries for Linux (x64), macOS (x64 and Apple Silicon), and Windows (x64) are available on the Releases page.
Each release includes a .tar.gz archive with the executable and dist/ folder.
- Download the archive for your platform from the Releases page
- Extract it:
tar xzvf ai-tool-center-<platform>.tar.gz
- On macOS, remove the quarantine attribute that macOS adds to downloaded files:
xattr -dr com.apple.quarantine ./ai-tool-center
- Make the binary executable (Linux/macOS):
chmod +x ./ai-tool-center
- Run it:
./ai-tool-center
The app will be available at http://localhost:3847.
Note: The executable must be run from the directory where you extracted the archive, as it requires the
dist/folder to be present alongside it.
CLI options:
./ai-tool-center --port 3000 # Custom port
./ai-tool-center --config ~/my-config.json # Custom config pathAll data is stored in ~/.ai_tool_center/:
| Path | Contents |
|---|---|
~/.ai_tool_center/mcp/config.json |
Server configurations |
~/.ai_tool_center/mcp/oauth-*.json |
OAuth tokens for HTTP servers |
~/.ai_tool_center/skills/ |
Agent skill files |
~/.ai_tool_center/rules/ |
Provider rule files |
~/.ai_tool_center/agents/ |
AGENTS.md content |
~/.ai_tool_center/subagents/ |
Subagent definitions |
~/.ai_tool_center/hooks/ |
Hook configurations |
~/.ai_tool_center/creds/creds.json |
API credentials |
Override the config path with --config <path> or the MCP_MANAGER_CONFIG env var.
Requires Bun 1.0+.
git clone https://github.com/Salil999/ai-tool-center.git
cd ai-tool-center
bun installbun run devBuilds the frontend and starts the server with hot reload on http://localhost:3847.
bun run build
bun startbun start -- --port 3000 # Custom port
bun start -- --config ~/my-config.json # Custom config pathbun run compileProduces ./ai-tool-center (or ai-tool-center.exe on Windows). The executable must be run from a directory containing the dist/ folder.
Releases are created automatically when a semver tag is pushed:
git tag v1.0.0
git push origin v1.0.0GPL-3.0