npm @pocket-agent/mcp-serverstreamable-httpupdated 1mo ago
MCP server for Pocket Agent, the AI Agent Workspace for owner-led businesses. Read-only, no auth, no API key. Four tools:
What can you do with pocket agent mcp?
@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 |
|---|---|
describe_pocket_agent |
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. |
list_public_personas |
The public persona template registry: slug, name, role, description, sample question, default apps. |
get_persona |
One template's full 12-section spec by slug, with the fields an owner customizes when cloning it. |
list_public_apps |
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"
}
}
}
Claude Code
claude mcp add --transport http pocket-agent https://aipocketagent.com/api/mcp
Or run the package locally over stdio:
claude mcp add pocket-agent -- npx -y @pocket-agent/mcp-server
Claude 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
Install
Add pocket agent mcp to your client. Pick the one you use.
{
"servers": {
"mcp-server": {
"type": "http",
"url": "https://aipocketagent.com/api/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
claude mcp add mcp-server -- npx -y @pocket-agent/mcp-servercodex mcp add mcp-server -- npx -y @pocket-agent/mcp-serveramp mcp add mcp-server -- npx -y @pocket-agent/mcp-server{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@pocket-agent/mcp-server"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@pocket-agent/mcp-server"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@pocket-agent/mcp-server"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@pocket-agent/mcp-server"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@pocket-agent/mcp-server"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"mcp-server": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@pocket-agent/mcp-server"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"mcp-server": {
"command": {
"path": "npx",
"args": [
"-y",
"@pocket-agent/mcp-server"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @pocket-agent/mcp-serverRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
Score
39 / 100
Incomplete
- Documentation22/25
- Maintenance16/25
- Trust6/20
- Capability0/15
- Install experience15/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 34 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 18 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 0.1.1Latest | Jul 28, 2026 |