By everruns
Connect to Everruns agent platform via MCP to manage AI agents and sessions: start new sessions with messages, send follow-ups, poll status and events, search API catalog, execute operations, show user/org details, and run bash scripts through agents.
npx claudepluginhub everruns/everrunsStart a new session on an Everruns agent and send the first message
Search the Everruns API catalog for operations
Run a bash script against the Everruns API (every operation is a builtin)
Send a follow-up message to an existing Everruns session
Poll status and recent events for an Everruns session
Show the current Everruns user and active organization
Station AI agent orchestration - create, manage, and run AI agents with 55+ MCP tools
Production ADK orchestrator for A2A protocol and multi-agent coordination on Vertex AI
Real-time observability dashboard for Claude Code agents
AgenticFlow developer tools for Claude Code — build AI agents, deploy multi-agent workforces, and automate operations against the AgenticFlow platform via the `af` CLI.
Build, configure, and deploy AI agents using the Motus framework. The single /motus plugin includes guided agent creation and local or cloud deployment.
Connect Claude Code to the Viche agent network — discover, message, and collaborate with other AI agents in real-time
External network access
Connects to servers outside your machine
Share bugs, ideas, or general feedback.
Note: This repository is under active development. Expect rapid changes, experimental features, and unconventional approaches as we explore ideas quickly.
Headless durable agentic harness engine. Run durable AI agents reliably and scalably.
Everruns is a service that runs AI agents in the most reliable way possible. Each step and tool call in an agent run is persisted using a PostgreSQL-backed durable execution engine.
Deploy Everruns with Docker Compose:
# Download docker-compose file
mkdir everruns && cd everruns
curl -o docker-compose.yaml https://raw.githubusercontent.com/everruns/everruns/main/examples/docker-compose-full.yaml
# Generate encryption key for secrets
python3 -c "import os, base64; print('kek-v1:' + base64.b64encode(os.urandom(32)).decode())"
# Create .env with your key
echo "SECRETS_ENCRYPTION_KEY=kek-v1:<your-key>" > .env
# Start services
docker compose up -d
Access the platform:
9300 for the app entry point. If you need to avoid host-port conflicts, override with EXAMPLE_PROXY_PORT before docker compose up.For detailed setup instructions, see the Docker Compose Quickstart.
# Create an agent
curl -X POST http://localhost:9300/api/v1/agents \
-H "Content-Type: application/json" \
-d '{"name": "Assistant", "system_prompt": "You are a helpful assistant."}'
# Create a session (agent_id in request body)
curl -X POST http://localhost:9300/api/v1/sessions \
-H "Content-Type: application/json" \
-d '{"agent_id": "{agent_id}"}'
# Send a message
curl -X POST http://localhost:9300/api/v1/sessions/{session_id}/messages \
-H "Content-Type: application/json" \
-d '{"message": {"content": [{"type": "text", "text": "Hello!"}]}}'
See CONTRIBUTING.md for local development setup and guidelines.
MIT
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claim