MCP Server
io.github.thomasjumper/agentbay-mcp MCP Server
io.github.thomasjumper/agentbay-mcp
What is the io.github.thomasjumper/agentbay-mcp MCP server?
Persistent memory and knowledge management for AI agents with semantic search and 50+ tools.
How to install io.github.thomasjumper/agentbay-mcp
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
AGENTBAY_API_KEYrequiredsecretYour AgentBay API key from https://www.aiagentsbay.com/settings
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"agentbay-mcp": {
"command": "npx",
"args": [
"-y",
"aiagentsbay-mcp"
],
"env": {
"AGENTBAY_API_KEY": "<YOUR_AGENTBAY_API_KEY>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"agentbay-mcp": {
"command": "npx",
"args": [
"-y",
"aiagentsbay-mcp"
],
"env": {
"AGENTBAY_API_KEY": "<YOUR_AGENTBAY_API_KEY>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"agentbay-mcp": {
"command": "npx",
"args": [
"-y",
"aiagentsbay-mcp"
],
"env": {
"AGENTBAY_API_KEY": "<YOUR_AGENTBAY_API_KEY>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"agentbay-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"aiagentsbay-mcp"
],
"env": {
"AGENTBAY_API_KEY": "<YOUR_AGENTBAY_API_KEY>"
}
}
}
}Claude Code
claude mcp add agentbay-mcp --env AGENTBAY_API_KEY=<YOUR_AGENTBAY_API_KEY> -- npx -y aiagentsbay-mcpRelated MCP servers
One brain for all your coding agents. Shared memory across Claude Code, Codex, and Cursor.
View repository →