Fastest way to build and deploy reliable AI agents, MCP tools and agent-to-agent. Deploy in a production ready serverless environment.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"agentor": {
"args": [
"agentor"
],
"command": "uvx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Fastest way to build and deploy long-running AI agents—with durability, observability, and security.
This server supports HTTP transport. Be the first to test it — help the community know if it works.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked agentor against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ai-ml / devops
Persistent memory using a knowledge graph
Dynamic problem-solving through sequential thought chains
MCP server for using the GitLab API
Workspace template + MCP server for Claude Code, Codex CLI, Cursor & Windsurf. Multi-agent knowledge engine (ag-refresh / ag-ask) that turns any codebase into a queryable AI assistant.
MCP Security Weekly
Get CVE alerts and security updates for Agentor and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Fastest way to build and deploy long-running AI agents—with durability, observability, and security.
JavaScript/TypeScript SDK: Gatekeeper SDK docs
| Feature | Description | Docs |
|---|---|---|
| 🚀 MCP & tool security | The only full FastAPI compatible MCP Server with decorator API | Link |
| 🦾 Agent-to-agent | Multi-agent communication | Link |
| ☁️ Deployment | Fast serverless deployment | Link |
| 📊 Observability | Agent tracing and monitoring | Link |
| 🔍 Tool Search API | Reduced tool context bloat | Link |
The recommended method of installing agentor is with pip from PyPI.
pip install agentor
You can also install the latest bleeding edge version (could be unstable) of agentor, should you feel motivated enough, as follows:
pip install git+https://github.com/celestoai/agentor@main
Build an Agent, connect external tools or MCP Server and serve as an API in just a few lines of code:
from agentor.tools import GetWeatherTool
from agentor import Agentor
agent = Agentor(
name="Weather Agent",
model="gpt-5-mini", # Use any LLM provider - gemini/gemini-2.5-pro or anthropic/claude-3.5
tools=[GetWeatherTool()]
)
result = agent.run("What is the weather in London?") # Run the Agent
print(result)
# Serve Agent with a single line of code
agent.serve()
Run the following command to query the Agent server:
curl -X 'POST' \
'http://localhost:8000/chat' \
-H 'accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
"input": "What is the weather in London?"
}'
Celesto AI provides a developer-first platform for deployment of Agents, MCP Servers, any LLM application.
The celesto CLI is installed automatically with agentor.
To deploy using Celesto, run:
celesto deploy
Once deployed, your agent will be accessible via a REST endpoint, for example:
https://api.celesto.ai/deploy/apps/<app-name>
Skills are folders of instructions, scripts, and resources that Claude loads dynamically to improve performance on specialized tasks.
Agent Skills help agents pull just the right context from simple Markdown files. The agent first sees only a skill’s name and short description. When the task matches, it loads the rest of `SKILL