The MCP marketplace & registry for AI agents.
MCP servers —
one URL. every agent.
Browse 254 hosted MCP servers in the mcp marketplace. Add them to a workspace. Get one authenticated URL that works with Claude, Cursor, ChatGPT, and Gemini — namespacing, secrets, and access controls automatic.
← replaces 20 separate MCP configs
254 hosted MCP servers.
15 categories. One marketplace.
The Aerostack mcp registry covers every layer of your stack — from databases and payments to AI models and developer tools. Browse, install in one click, and every server lands in your workspace URL immediately.
Database & Storage
38 servers
Payments & Finance
21 servers
Auth & Identity
17 servers
AI & LLMs
29 servers
Developer Tools
44 servers
Communication
19 servers
Productivity
26 servers
Cloud Storage
14 servers
CRM & Sales
16 servers
Analytics
13 servers
Automation
11 servers
Security
9 servers
Web Search
8 servers
Version Control
12 servers
E-Commerce
7 servers
254
Hosted MCP servers
15
Categories
1-click
Install to workspace
Free
To publish
MCP servers vs Skills vs Functions —
what each one does.
Your workspace composes all three behind a single URL. Here is how they differ, and when to reach for each one.
MCP Server
Tool provider
A hosted server that implements the Model Context Protocol. It exposes a set of callable tools — like search_repos, create_invoice, or query_db — to any AI agent. The agent calls a tool; the server executes it and returns structured data.
- ✓ Implements MCP protocol natively
- ✓ Tools auto-namespaced: server__tool
- ✓ Connects to external APIs and databases
- ✓ Installable from the mcp marketplace
Example: github-mcp, postgres-mcp, stripe-mcp
Skill
Agentic workflow templateA pre-built multi-step agentic sequence the agent can invoke as a single named action. Skills chain LLM calls, tool calls, and conditional logic together — the agent triggers a skill and the platform runs all the steps.
- ✓ Pre-built workflow templates
- ✓ Chains multiple steps as one action
- ✓ Cross-model: Claude, OpenAI, Gemini
- ✓ Public, private, or team-scoped
Example: code-review, summarize-document, triage-issue
Edge Function
TypeScript at the edgeA TypeScript function deployed on Cloudflare's edge network that runs your custom logic — reads your databases, writes to KV stores, calls your own APIs. It can be wrapped as a tool any server or skill can call.
- ✓ TypeScript / JavaScript, zero config
- ✓ 8 native bindings: D1, KV, R2, Queues, AI...
- ✓ 300+ edge locations, sub-50ms globally
- ✓ Callable from MCP servers and Skills
Example: custom-auth, data-transform, pdf-parse
Quick decision guide
| If you need to… | Use |
|---|---|
| Expose an external API (GitHub, Stripe, Notion) to agents | MCP Server |
| Add custom business logic connected to your own DB | MCP Server or Edge Function |
| Let agents trigger a multi-step pre-built workflow | Skill |
| Run TypeScript with Cloudflare D1, KV, or R2 access | Edge Function |
| Compose GitHub + Stripe + your custom logic in one URL | Workspace (all three) |
The AI thinks it's one MCP server.
It's actually all of them.
One workspace aggregates MCP servers + Skills + Edge Functions behind a single authenticated URL. The AI model sees one remote MCP server with all tools auto-namespaced — no conflicts, no config sprawl.
MCP Servers
Community or self-hosted remote MCP servers. Auto-namespaced in your workspace with `{server}__{tool}` naming so 20 servers never conflict.
Skills
Pre-built agentic workflow templates. Public, private, or team-scoped. Works with Claude, OpenAI, and Gemini out of the box.
Edge Functions
TypeScript functions with 8 native Cloudflare bindings. Runs at 300+ edge locations, sub-50ms globally. No infra to manage.
One URL. Claude, Cursor, ChatGPT, Gemini — every AI client.
Your workspace URL auto-generates three formats — MCP native, OpenAI tools, and Gemini function declarations. Zero adapter code needed.
MCP Native
SSE · stdio// mcp.json
{
"mcpServers": {
"workspace": {
"url": "https://gateway.aerostack.dev/ws/acme",
"headers": {
"Authorization": "Bearer mwt_..."
}
}
}
} OpenAI Format
/openai-tools// Auto-generated
[
{
"type": "function",
"function": {
"name": "github__search_repos",
"description": "Search GitHub repos",
"parameters": { ... }
}
}
] Gemini Format
/gemini-tools// Auto-generated
{
"functionDeclarations": [
{
"name": "github__search_repos",
"description": "Search GitHub repos",
"parameters": { ... }
}
]
} Host an MCP server — deploy in one click or bring your own.
Stop running MCP servers on your laptop. Deploy a remote MCP server to the edge — your colleague, your team, and any agent worldwide connects to the same hosted URL.
You build
- MCP server using
- @modelcontextprotocol/sdk
- Define your tools.
- Your logic. Your data.
Aerostack deploys
- Global edge network
- 300+ locations worldwide
- Zero cold start
- Auto-scaled globally
Anyone connects
- Claude Desktop
- Cursor
- VS Code Copilot
- ChatGPT + Gemini
- Any custom agent
Your hosted MCP server URL — paste into any AI client
Sub-50ms globally · Zero cold start · Auto-scaled · AES-256 secrets
Then add it to your workspace
Your hosted MCP server becomes part of your one-URL stack. Team members get access with one token refresh. Secrets are stored encrypted and never travel back to the model.
API keys stored encrypted.
Never exposed to the model.
Every secret — API keys, OAuth tokens, database connection strings — is AES-256 encrypted before storage. At runtime, secrets are injected into the MCP server process on the edge and are never included in the data the AI model sees or logs.
AES-256 encryption at rest
Secrets encrypted before hitting the database.
Injected at runtime only
The model never receives raw credentials in context.
Per-workspace secret scope
Secrets are never shared across users or workspaces.
Per-tool access controls
Block destructive operations; allow read-only — per tool, per MCP server.
Private MCP for teams
Internal servers visible only to your workspace, never listed publicly.
GITHUB_TOKEN
ghp_•••••••••••••••••••••••
STRIPE_SECRET
sk_live_•••••••••••••••••
DATABASE_URL
postgres://•••••••••••••
NOTION_TOKEN
secret_•••••••••••••••••
SLACK_BOT_TOKEN
xoxb-•••••••••••••••••
See every tool call.
Debug in real time.
Every tool invocation on your hosted MCP server is logged — method, latency, status, model, workspace. Stream live or query historical data. Rate limiting and quota enforcement built in.
5
Servers in workspace
120 req/min
Rate limit
Per plan
Quota enforced
Aerostack vs standalone MCP vs other registries
The mcp marketplace is table stakes. The workspace model, encrypted secrets, and cross-client adapters are what make it production-ready.
| Feature | Standalone MCP | Other registries | Aerostack |
|---|---|---|---|
| MCP & Tool Ecosystem | |||
| 254 hosted MCP servers (mcp marketplace) | — | partial | ✓ |
| One URL for all installed servers | — | — | ✓ |
| Auto tool namespacing {server}__{tool} | — | — | ✓ |
| Skills (agentic workflow templates) | — | — | ✓ |
| Edge Functions (TypeScript logic) | — | — | ✓ |
| Security & Secrets | |||
| Encrypted secret storage (AES-256) | — | partial | ✓ |
| Secrets never exposed to model | — | — | ✓ |
| Per-tool allow/deny access controls | — | — | ✓ |
| Private MCP for teams | — | — | ✓ |
| Client Compatibility | |||
| Claude Desktop + Cursor + VS Code | ✓ | partial | ✓ |
| OpenAI format (/openai-tools) | — | — | ✓ |
| Gemini format (/gemini-tools) | — | — | ✓ |
| Zero-config after one paste | — | — | ✓ |
| Hosting & Ops | |||
| Edge-hosted (sub-50ms globally) | — | partial | ✓ |
| Real-time tool call observability | — | — | ✓ |
| Free publishing to mcp registry | — | ✓ | ✓ |
| Rate limiting & quota enforcement | — | — | ✓ |
Publish your MCP server to the mcp registry. Free.
Build it once. List it in the marketplace. Any Aerostack user can install it into their workspace in one click.
Need private MCP servers for your team?
Create a private workspace — share MCP servers with your whole team via one URL. Full access control, encrypted secrets, and observability included.
Browse the MCP Server Registry
254 hosted MCP servers and skills from the community — model context protocol integrations for every stack. Install any server into your workspace in one click.
Frequently asked questions about hosted MCP servers
Everything about the mcp marketplace, mcp server hosting, and the workspace model.
What are MCP servers, and what do they do for AI agents?
What is the difference between MCP servers, Skills, and Edge Functions on Aerostack?
What is an Aerostack workspace, and how does it compose multiple MCP servers?
How does tool namespacing work — what is {server}__{tool}?
How do I connect MCP servers to Claude, Cursor, ChatGPT, or Gemini?
What MCP servers are available in the mcp marketplace, and how do I browse them?
Can I host my own private MCP server on Aerostack?
How does billing work for hosted MCP servers?
How do I publish my own MCP server to the mcp registry?
Are API keys and secrets safe when using hosted MCP servers?
When should I use a standalone MCP server instead of an Aerostack workspace?
Related features
One workspace URL.
254 MCP servers. Every AI client.
Stop pasting dozens of model context protocol endpoints. Create one workspace, install from the mcp marketplace, and share a single authenticated URL with your entire team. Free to start. Free to publish.