AIO MCP
Unified control plane and runtime for the Model Context Protocol ecosystem, enabling plugin management, configuration, permissions, and API gateway services.
README
AIO MCP
One Platform. Every MCP.
Language:
- English (default): README.md
- Turkce: README_TR.md
Overview
AIO MCP is a unified control plane and runtime for the Model Context Protocol ecosystem.
Core modules:
- Engine
- Plugin Manager
- Configuration Manager
- Permission Manager
- API Gateway
- Railway-ready HTTP server
Architecture (ASCII)
+---------------------------------------------------------+
| Experience Layer |
| Desktop App (Tauri) | Web Dashboard | CLI |
+---------------------------------------------------------+
| API Layer |
| REST /v1/* | WebSocket |
+---------------------------------------------------------+
| Core Services (Rust) |
| Engine | Plugin Manager | Config | Permission | Gateway |
+---------------------------------------------------------+
| Data Layer |
| SQLite / PostgreSQL / Redis |
+---------------------------------------------------------+
Railway Deployment
AIO MCP runs as a pure HTTP API. A frontend is not required.
1) Environment variables
Add these in Railway Variables:
| Variable | Example | Notes |
|---|---|---|
AIO_API_KEYS |
sk-your-secret-key |
Separate multiple keys with commas |
PORT |
auto | Provided by Railway |
RUST_LOG |
aio_server=info |
Optional |
Generate a strong key:
openssl rand -hex 32
2) Deploy
railway login
railway link
railway up
API Reference
All /v1/* endpoints require an API key.
Authentication:
X-Api-Key: sk-your-key
# or
Authorization: Bearer sk-your-key
Public endpoints:
| Method | Path | Description |
|---|---|---|
GET |
/ |
Service info |
GET |
/health |
Health check |
Protected endpoints:
| Method | Path | Description |
|---|---|---|
GET |
/v1/plugins |
List plugins |
POST |
/v1/plugins |
Register plugin |
GET |
/v1/config/:scope/:key |
Get config |
PUT |
/v1/config/:scope/:key |
Set config |
POST |
/v1/permissions/request |
Request permission |
POST |
/v1/permissions/grant |
Grant permission |
GET |
/v1/permissions/check |
Check permission |
GET |
/v1/services |
Core services |
GET |
/v1/routes |
Route table |
Example:
curl -X POST https://your-app.up.railway.app/v1/plugins \
-H "X-Api-Key: sk-your-key" \
-H "Content-Type: application/json" \
-d '{"id":"official.github","version":"1.0.0"}'
Local Development
Requirements:
- Rust stable
- Node.js 22+ (optional, for TypeScript app shells)
Run:
git clone https://github.com/CRTYPUBG/aio-mcp.git
cd aio-mcp
cp .env.example .env
# Set AIO_API_KEYS in .env
cargo run --package aio-server
Test:
cargo test --workspace
Build (dist output):
powershell -ExecutionPolicy Bypass -File scripts/build.ps1
Project Structure
aio-mcp/
|- server/
|- core/
| |- engine/
| |- plugin-manager/
| |- configuration-manager/
| |- permission-manager/
| \- api-gateway/
|- apps/
| |- desktop/
| |- web-dashboard/
| \- cli/
|- docs/
|- schemas/
|- scripts/
|- assets/
|- Dockerfile
\- railway.json
License
MIT - see LICENSE.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.