AetherServe
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@AetherServeCheck server health"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
AetherServe
An operations layer for Model Context Protocol (MCP) servers.
AetherServe wraps an MCP server built with the official Model Context Protocol Python SDK and adds the operational concerns that matter once that server leaves a notebook and goes into a real deployment: metrics, health checks, rate limiting, structured logging, and lifecycle hooks.
It is a small, dependency-light middleware layer, not a fork of the protocol or the SDK. You keep writing tools the normal way; AetherServe observes and governs the calls around them.
Why
The MCP SDK gives you the protocol. It does not give you an answer to questions every production deployment eventually asks:
Which tools are slow, and how slow, at the p50/p95/p99?
Is this server healthy enough to keep receiving traffic?
What stops one client from calling an expensive tool 500 times a second?
How do I correlate a log line with the tool call that produced it?
How do I run code exactly once at startup and exactly once at shutdown?
AetherServe answers all five with a small, composable API, without asking you to adopt a heavier framework or change how you write MCP tools.
Installation
pip install aetherserveThis pulls in the mcp package as its only required runtime dependency.
For the bundled examples (which use Starlette/Uvicorn to expose HTTP health and metrics endpoints):
pip install "aetherserve[examples]"Quickstart
from mcp.server.fastmcp import FastMCP
from aetherserve import AetherServer, AetherServeConfig
raw_server = FastMCP("weather-server")
server = AetherServer(raw_server, AetherServeConfig(service_name="weather-server"))
@server.tool()
def get_forecast(city: str) -> str:
return f"Sunny in {city}"
if __name__ == "__main__":
server.run()Every call to get_forecast is now timed, counted, rate-limited against
the server's default policy, wrapped in a trace span, and logged with a
correlation id — without a single line of that logic living in
get_forecast itself.
Core Concepts
Concern | Module | What you get |
Metrics |
| Counters, gauges, histograms; Prometheus text exposition |
Logging |
| JSON or text logs, automatic request-id correlation |
Tracing |
| Lightweight nested spans, pluggable exporter |
Health |
| Named checks, critical vs. degraded aggregation, HTTP-status mapping |
Rate limiting |
| Token-bucket limiter, global or per-client scope, per-tool overrides |
Lifecycle |
|
|
See ARCHITECTURE.md for how these pieces fit together
around the AetherServer wrapper, and docs/ for a deeper dive
into each subsystem.
Per-tool rate limits
from aetherserve.ratelimit.policies import RateLimitScope
server.set_rate_limit(
"generate_image",
capacity=2,
refill_rate=0.1, # ~1 token every 10 seconds
scope=RateLimitScope.PER_CLIENT,
)
@server.tool(client_key=lambda client_id, prompt: client_id)
def generate_image(client_id: str, prompt: str) -> str:
...Health checks
def database_ping() -> None:
connection.execute("SELECT 1") # raises on failure
server.add_health_check("database", database_ping, critical=True)server.health.run_all() aggregates every registered check into a single
healthy / degraded / unhealthy report; aetherserve.health.endpoint.health_response
maps that straight into an HTTP status code your framework of choice can
return.
Examples
examples/basic_server.py— the smallest possible AetherServe server.examples/rate_limited_server.py— a stricter, per-client policy on one expensive tool.examples/full_observability_demo.py— wiring/healthzand/metricsinto a Starlette app alongside the MCP tool server.
Development
git clone https://github.com/faizansiddiq/aetherserve.git
cd aetherserve
pip install -e ".[dev]"
pytest
mypy src/aetherserve
ruff check .See CONTRIBUTING.md for the full workflow and
docs/testing.md for how the test suite is structured
(including the in-repo fake MCP server used so unit tests don't require a
live protocol connection).
Relationship to the MCP SDK
AetherServe is not a fork, rebrand, or replacement of the official
Model Context Protocol Python SDK. It is an independent project that
takes an mcp.server.fastmcp.FastMCP instance as a constructor argument
and wraps it, in the same sense that a WSGI middleware wraps a WSGI app.
Full attribution for the underlying SDK is in NOTICE.md.
License
MIT — see LICENSE. Copyright (c) 2026 Faizan Siddiq.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/faizzansiddiq/AetherServe'
If you have feedback or need assistance with the MCP directory API, please join our Discord server