OpenPod
Provides a transport channel for sending and receiving messages via Discord.
Provides a transport channel for sending and receiving messages via ntfy.sh notifications.
Allows using local Ollama models as a free tier for agent reasoning, requiring no API key.
Allows using OpenAI's GPT models via API as a model tier for agent reasoning, configured via OPENAI_API_KEY.
Provides a transport channel for sending and receiving messages via Telegram.
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., "@OpenPodsend alpha beta 'Check project milestone'"
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.
OpenPod
A zero-dependency multi-agent framework. A K-addressed message bus, agents that route each call to the cheapest capable model tier (your keys, your spend caps), persistent memory, hot-reload skills — and it runs as an MCP server. No cloud account, no phone-home, MIT.
pip install openpod # once published
# or, from a clone:
pip install -e .The two things it does
1. Route each call to the cheapest model that can do the job.
from openpod import Agent
agent = Agent("my-agent") # uses ANTHROPIC_API_KEY / OPENAI_API_KEY / GEMINI_API_KEY from env
@agent.on_message
def handle(msg):
return agent.think(msg.text) # K-classified → cheapest capable tier, tracks $ saved vs a flat baseline
agent.run()Free tiers (template + local Ollama) cost nothing and need no key. Paid tiers use your provider keys — OpenPod never bills you and never checks a license. (An optional hosted-tier gate exists in the code but is off by default.)
2. Pass messages between agents with a K-addressed bus.
from openpod import Pod
pod = Pod("my_cell", roles=["alpha", "beta", "gamma"])
pod.send("alpha", "beta", "Build the widget", suit="+7D", self_rank=9) # suit = K-coordinate, rank = confidence
for msg in pod.inbox("beta"): # priority-sorted, TTL-filtered
print(f"[{msg.from_role}] {msg.body}")
pod.close_session("alpha", "Widget built. Tests pass.") # hand off state, kill amnesiaRelated MCP server: agent-bus-mcp
CLI
openpod send alpha beta "Do the thing" --suit "+7S"
openpod inbox beta
openpod close alpha "Session done."
openpod stats # tokens routed, $ spent, $ saved vs baseline
openpod demoAlso in the box
Memory — BM25 + cosine retrieval, persistent across sessions.
Skills — a hot-reloading skill system that doubles as a native MCP server.
Channels — optional ntfy / Telegram / Discord transports (extras:
pip install openpod[all]).
Why "pod", and why 143
The addressing is K-104: 4 suits × 13 ranks × 2 polarities = 104 content coordinates, plus 39 relational primitives (3 axes × 13 ranks) = 143 — the same vocabulary size as sperm-whale codas, which is where the "pod" comes from. It's a compact, human-legible coordinate for what a message is about and how sure the sender is — not a required concept; you can ignore the suits and use plain strings. It exists because addressing beats free text when many agents talk.
Status
Alpha (0.2). Zero-dependency core; extras are opt-in. Test suite included (pytest, 10 behavioral tests, green on 3.14); CI configured for Python 3.10–3.12.
See ROADMAP.md for v0.3 — folding hard-won multi-agent-comms lessons into the message schema.
License
MIT
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.
Related MCP Servers
- Alicense-qualityCmaintenanceOpen-source MCP server for collaborative AI agents, providing a shared mailbox, identity model, and notification fabric.1783Apache 2.0
- Alicense-qualityBmaintenanceA local MCP server that connects AI coding agents (Claude Code, Codex, Cursor, etc.) on the same machine via a shared message bus, enabling them to chat, delegate tasks, and collaborate privately without cloud or internet.2113MIT
- Alicense-qualityAmaintenanceMCP server that enables AI agents to run a deterministic orchestration loop with decomposition, subagent execution, and review feedback across multiple LLM backends.54MIT
- Alicense-qualityBmaintenanceMCP server that enables agents to dynamically switch between multiple AI models (OpenAI, Anthropic, Google, etc.) with unified protocol-driven configuration and capability discovery.Apache 2.0
Related MCP Connectors
Agent-native collaboration network: orchestrate a team of long-running agents from any MCP client.
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
Control plane for autonomous software labor. Agents claim objectives over MCP with audit trail.
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/humilityisavirtue-collab/openpod'
If you have feedback or need assistance with the MCP directory API, please join our Discord server