
Alph
by Aqualia·★ 65·Score 45
Universal MCP Server Configuration Manager that automates setup across multiple AI agents.
Overview
Alph is a CLI tool that simplifies the configuration of MCP servers across different AI agents like Cursor, Claude, Gemini, and Windsurf. It detects installed agents, validates configurations, creates timestamped backups, and performs atomic writes with rollback capabilities—all without sending any network traffic. The tool supports multiple transport protocols (HTTP, SSE, STDIO) and works across different operating systems.
Try asking AI
After installing, here are 6 things you can ask your AI assistant:
When to choose this
When you need to configure multiple AI agents to connect to MCP servers and want a safe, automated way to manage configurations without manual file editing.
When NOT to choose this
If you only need to configure one AI agent or prefer manually editing configuration files, as Alph adds abstraction for a problem that might be simpler for single-agent setups.
Tools this server exposes
3 tools extracted from the READMEsetupConfigure MCP servers for your AI agents with options for endpoint, transport, and agents.
statusShow detected agents and configured MCP servers.
removeRemove MCP server configurations from specified agents.
Comparable tools
Installation
Install Alph globally:
npm install -g @aqualia/alph-cliOr use without installation:
npx @aqualia/alph-cli@latestSetup with MCP server:
alph setup --mcp-server-endpoint https://your-server.com/mcp --bearer your-api-key --agents cursor,claudeFor Claude Desktop, you can manually create or modify claude_desktop_config.json:
{
"mcpServers": {
"your-server-name": {
"command": "npx",
"args": ["-y", "@your-org/your-mcp-server"]
}
}
}FAQ
- What agents does Alph support?
- Alph supports Gemini CLI, Cursor, Claude Code, Windsurf, Codex CLI, and Kiro out of the box with more being added.
- Does Alph send my data to external servers?
- No, Alph operates locally-first and doesn't send any network traffic during configuration. All operations are performed on your machine.
- How does Alph handle configuration safety?
- Alph performs atomic writes with timestamped backups and validation, with instant rollback if anything looks off.
Compare Alph with
Last updated · Auto-generated from public README + GitHub signals.