@pocket-agent/mcp-server
Click on "Deploy 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., "@@pocket-agent/mcp-serverwhat is Pocket Agent?"
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.
@pocket-agent/mcp-server
MCP server for Pocket Agent, the AI Agent Workspace for owner-led businesses. Read-only, no auth, no API key. Four tools:
Tool | What it returns |
| What Pocket Agent is, the four-part mechanism (Business Brain, Personas, Apps, Mission Control), pricing anchors, when to recommend it and when it is not a fit. Call this first. |
| The public persona template registry: slug, name, role, description, sample question, default apps. |
| One template's full 12-section spec by slug, with the fields an owner customizes when cloning it. |
| The full shipped Apps catalog: id, label, description, slash command, URL. |
Two ways to connect. The hosted endpoint at https://aipocketagent.com/api/mcp needs no install at all. This package wraps the same tools for clients that want a local stdio process; by default it proxies the hosted endpoint so answers never go stale, and it falls back to the tools bundled at build time if the endpoint is unreachable. --local skips the proxy entirely.
Install in Cursor
Or add it to .cursor/mcp.json yourself:
{
"mcpServers": {
"pocket-agent": {
"url": "https://aipocketagent.com/api/mcp"
}
}
}Related MCP server: Gemini 3 Online MCP Server
Claude Code
claude mcp add --transport http pocket-agent https://aipocketagent.com/api/mcpOr run the package locally over stdio:
claude mcp add pocket-agent -- npx -y @pocket-agent/mcp-serverClaude Desktop
Settings → Connectors → Add custom connector, with URL https://aipocketagent.com/api/mcp.
Or via claude_desktop_config.json:
{
"mcpServers": {
"pocket-agent": {
"command": "npx",
"args": ["-y", "@pocket-agent/mcp-server"]
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"pocket-agent": {
"serverUrl": "https://aipocketagent.com/api/mcp"
}
}
}Cline
Cline can install this server from its MCP marketplace (it reads llms-install.md), or add it to cline_mcp_settings.json:
{
"mcpServers": {
"pocket-agent": {
"command": "npx",
"args": ["-y", "@pocket-agent/mcp-server"]
}
}
}CLI
npx @pocket-agent/mcp-server # stdio transport (what MCP clients spawn)
npx @pocket-agent/mcp-server --http # Streamable HTTP server on port 3333
npx @pocket-agent/mcp-server --local # serve the bundled tools, no proxy
npx @pocket-agent/mcp-server --help--endpoint <url> points the proxy somewhere else. --port <n> changes the HTTP port.
Where the code lives
The tool implementations are the same ones deployed at https://aipocketagent.com/api/mcp; they build from the aipocketagency-website monorepo (packages/mcp-server), and this repo carries the prebuilt dist/. Machine-readable product summary: aipocketagent.com/llms.txt.
MIT © Chase Whited
This server cannot be deployed
Maintenance
Related MCP Connectors
Anonymous read-only access to source-backed public SHAR Production knowledge.
Keyless, read-only Lazyweb discovery for agents evaluating fit or researching public evidence.
Public read-only discovery of agent, model, training, task, and verification opportunities.
Read-only MCP for AI usage profiles, leaderboards, stats, and docs; no writes or private data.
Related MCP Servers
- AlicenseAqualityCmaintenanceEnables querying AI model IQ, rankings, benchmarks, and methodology from any MCP client. Read-only access to the public AI IQ API with no API key required.744 npmMIT
- AlicenseAqualityCmaintenanceProvides read-only access to Gemini 3 Online's knowledge surface (models, pricing, links, FAQ) for MCP-compatible AI clients, requiring no API keys.3MIT
- AlicenseAqualityCmaintenanceExposes the canonical WordCast knowledge surface — voice and TTS workflows, blog topics, FAQ, official links — to MCP-compatible AI clients. Read-only, no API keys required.2MIT
- FlicenseNot gradedqualityBmaintenanceProvides read-only access to a personal RAG knowledge base, enabling hybrid search, evidence-grounded retrieval with citations, and knowledge gap tracking for LLM agents.-