gptqueue
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., "@gptqueuesend a task to agent Alice to process the report"
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.
gptqueue
Inter-agent message queue over MCP + Redis.
gptqueue lets AI agents (Claude Code, Codex, Gemini CLI, or any MCP-compatible client) discover each other and exchange messages through a shared Redis-backed queue. Each agent registers with a name and description, then sends and receives typed messages via MCP tool calls.
Architecture
┌─────────────┐ MCP (stdio) ┌──────────────┐
│ AI Agent A │◄──────────────────────►│ │
└─────────────┘ │ gptqueue │ ┌───────┐
│ MCP server │◄─────►│ Redis │
┌─────────────┐ MCP (stdio) │ │ └───────┘
│ AI Agent B │◄──────────────────────►│ │
└─────────────┘ └──────────────┘Each agent gets its own bounded inbox queue in Redis. Messages are delivered atomically via a Lua script that enforces queue size limits. Agents publish heartbeats so others can see who is online.
Related MCP server: A2AMCP
Components
Component | Description |
MCP server ( | Stdio-based MCP server exposing 6 tools for agent communication |
PTY wrapper ( | Wraps a CLI process in a PTY, watches Redis for incoming messages, and injects notifications when the process is idle |
Hook script ( | Claude Code hook for startup context injection and stop-gate (blocks exit if inbox has unread messages) |
MCP Tools
Tool | Description |
| Register with a name, role ( |
| Send a typed message ( |
| Blocking pop from your inbox (default timeout: 5s) |
| Discover all registered agents with online/offline status |
| Check queue depth and capacity for one or all agents |
| Unregister and clean up queue data |
Prerequisites
Node.js >= 18
Redis running locally (default
redis://127.0.0.1:6379)
Install
git clone https://github.com/rahulrajaram/gptqueue.git
cd gptqueue
npm install # builds automatically via postinstallConfiguration
Claude Code
Add to ~/.claude.json under mcpServers:
{
"gptqueue": {
"type": "stdio",
"command": "node",
"args": ["/path/to/gptqueue/dist/mcp-server/index.js"]
}
}Optionally add the hook script to ~/.claude/settings.json for automatic startup context and exit gating:
{
"hooks": {
"SessionStart": [{
"matcher": "",
"hooks": [{
"type": "command",
"command": "/path/to/gptqueue/scripts/check-queue.sh --startup"
}]
}],
"Stop": [{
"matcher": "",
"hooks": [{
"type": "command",
"command": "/path/to/gptqueue/scripts/check-queue.sh --stop"
}]
}]
}
}Any MCP client
The server speaks stdio MCP. Point your client at:
node /path/to/gptqueue/dist/mcp-server/index.js [agent-name]Or set GPTQ_AGENT_NAME in the environment.
Environment variables
Variable | Default | Description |
|
| Redis connection URL (MCP server and PTY wrapper) |
| (none) | Pre-register with this agent name on startup |
|
| Max messages per agent inbox |
|
| Redis host (hook script only) |
|
| Redis port (hook script only) |
PTY wrapper
The PTY wrapper lets you run any CLI (e.g. claude, codex) inside a PTY that monitors Redis for incoming messages and injects prompts when the process goes idle:
gptqueue-pty --agent alice --cmd claudeHow it works
Registration -- An agent calls
register_agentwith a name, role, and description. This writes to a Redis hash (gptq:registry) and starts a heartbeat (10s interval, 30s TTL).Discovery -- Any agent (even unregistered) can call
list_agentsto see all registered agents and whether they're online.Messaging --
send_messagepushes to the target agent's Redis list (gptq:q:<name>). A Lua script enforces the queue bound atomically. If the queue is full, the sender retries with exponential backoff (up to 10 attempts).Receiving --
receive_messagedoes a blocking pop (BLPOP) with a configurable timeout.Cleanup --
unregister_agentremoves the agent from the registry and deletes its queue, metadata, and heartbeat keys.
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.
Latest Blog Posts
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/rahulrajaram/gptqueue'
If you have feedback or need assistance with the MCP directory API, please join our Discord server