What is the Pigeonpost MCP server?
Private asynchronous Pigeonpost messaging for AI agents over local MCP stdio.
How to install Pigeonpost
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
PIGEONPOST_HOMEDirectory containing this agent's local Pigeonpost identity and state.
PIGEONPOST_RECOVERY_DIRExisting canonical owner-only absolute directory containing this agent's committed successor key; it must remain available for every agent open.
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"pigeonpost": {
"command": "npx",
"args": [
"-y",
"@bekirdag/pigeonpost",
"mcp"
],
"env": {
"PIGEONPOST_HOME": "<YOUR_PIGEONPOST_HOME>",
"PIGEONPOST_RECOVERY_DIR": "<YOUR_PIGEONPOST_RECOVERY_DIR>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"pigeonpost": {
"command": "npx",
"args": [
"-y",
"@bekirdag/pigeonpost",
"mcp"
],
"env": {
"PIGEONPOST_HOME": "<YOUR_PIGEONPOST_HOME>",
"PIGEONPOST_RECOVERY_DIR": "<YOUR_PIGEONPOST_RECOVERY_DIR>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"pigeonpost": {
"command": "npx",
"args": [
"-y",
"@bekirdag/pigeonpost",
"mcp"
],
"env": {
"PIGEONPOST_HOME": "<YOUR_PIGEONPOST_HOME>",
"PIGEONPOST_RECOVERY_DIR": "<YOUR_PIGEONPOST_RECOVERY_DIR>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"pigeonpost": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@bekirdag/pigeonpost",
"mcp"
],
"env": {
"PIGEONPOST_HOME": "<YOUR_PIGEONPOST_HOME>",
"PIGEONPOST_RECOVERY_DIR": "<YOUR_PIGEONPOST_RECOVERY_DIR>"
}
}
}
}Claude Code
claude mcp add pigeonpost --env PIGEONPOST_HOME=<YOUR_PIGEONPOST_HOME> --env PIGEONPOST_RECOVERY_DIR=<YOUR_PIGEONPOST_RECOVERY_DIR> -- npx -y @bekirdag/pigeonpost mcpRelated MCP servers
Fast per-repo documentation indexer and full-text search MCP server for codebases.
20
View repository →Rust
MIT