Connect from Any AI

Feed your agent teams from Claude Mobile, ChatGPT, or any tool. Anything pushed to the Brain is immediately available to your agents.

How it works

💬

Claude Mobile ChatGPT Any AI

🧠

Brain Vault Teams/<team>/

🤖

Agent Teams read + act

You describe a strategy or brief in Claude Mobile → push it to the Brain → your Marketing team agents find it in Teams/marketing/ and use it for their next task.

What agents can do with your data

vault_write

Save a note to the Brain — routed to a team folder or inbox

vault_search

Semantic search across all notes — finds relevant context by meaning

vault_read

Read the full content of any note by path

get_context

Pull relevant notes + active projects for a topic

dispatch_task

Create a task and route it to the right agent team

Your API Key

Connect a Provider

📱

Claude Mobile

Remote MCP

Claude iOS/Android supports remote MCP via Integrations. Gives you vault_search, vault_write, dispatch_task and more.

  1. 1Open Claude app → Settings → Integrations
  2. 2Tap "Add Integration" → Custom
  3. 3Set URL: https://app.agentplayground.net/api/mcp
  4. 4Set Authorization header: Bearer YOUR_KEY
  5. 5Save → start a new chat. Brain tools are now available.

Config

claude_desktop_config.json
URL: https://app.agentplayground.net/api/mcp
Authorization: Bearer YOUR_API_KEY

System prompt to copy into Claude Mobile

Paste this into a Project's System Prompt (Claude) or a Custom Instruction (ChatGPT). It tells the AI when and how to push data to your Brain.

system_prompt.txt
You have access to the AgentPlayground Brain — a shared knowledge vault used by AI agent teams running on a private server.

## When to push to the Brain
- The user asks you to save, store, remember, or share something for their agents
- You generate a strategy, brief, plan, or research they want agents to act on
- The user says "dump this to the brain", "save this for my agents", or similar

## How to push
Call the Brain Push API:

POST https://app.agentplayground.net/api/brain/push
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

{
  "title": "<descriptive title>",
  "content": "<full markdown content>",
  "team": "<team name if routing to a specific team, else omit>",
  "tags": ["#tag1", "#tag2"]
}

## Team routing
If the user mentions a specific team (e.g. "marketing team", "research team"), set "team" to that name. The note will land in Teams/<team>/ where agents look first.

## Format guidelines
Structure your output as clean markdown with:
- A clear ## Summary section
- ## Key Points or ## Strategy as appropriate
- ## Next Steps or ## Action Items at the bottom
- Use bold for key decisions, bullet points for lists

After pushing, confirm: "Saved to Brain at <path>. Your agents will find this in Teams/<team>/."

Brain Push Endpoint

The /api/brain/push endpoint accepts Bearer auth from any external tool. Set team to route content into that team's Brain folder. Your agents automatically search their folder before starting tasks.

Save to inbox (any team can find it)

{
  "title": "Product Idea",
  "content": "## Idea\n\nBuild a widget that...",
  "tags": [
    "#idea"
  ]
}

Route to Marketing team

{
  "title": "Q3 Campaign Strategy",
  "content": "## Strategy\n\nFocus on...",
  "team": "marketing",
  "tags": [
    "#strategy",
    "#q3"
  ]
}

Route to Research team

{
  "title": "Competitor Analysis",
  "content": "## Findings\n\n...",
  "team": "research",
  "tags": [
    "#research"
  ]
}

GET https://app.agentplayground.net/api/brain/push returns the OpenAPI schema. Use this URL as the Schema URL in ChatGPT Custom GPT Actions.