AI & Machine Learning
platformpilot.ai
Provides semantic search and management of organizational memories for AI agents.
ENDPOINT 1
https://mcp.platformpilot.ai/brain/mcp
MCP server metadata
- Name
- platformpilot-memory
- Version
- 0.1.0
Typical flow: recall_context composes context in one call (topic search plus specific keys together); search_memories finds one kind of memory by topic (namespace 'episodes' for past events, 'knowledge' for reusable learnings); fetch_memories reads specific memories when you already have their keys. Search before you re-derive: a similar situation has often been handled before, and if a first query returns nothing, rephrase it before giving up. A row whose advisory is not null warns that the memory failed recently. Write reusable learning back with manage_memories: one idea per memory, self-contained (name the system and the concept, never 'this issue'), and distilled (the lesson and its cause, not the raw log); if a search already surfaced a memory you would refine, update it instead of creating a near-duplicate. After acting on recalled memories, report the result with feedback_memories.
Known tools 5
search_memoriesSemantic search over one namespace of the Brain's memories: 'episodes' (records of past situations and how they were resolved) or 'knowledge' (reusable learnings: patterns, facts, procedures).
Inferred read-onlymanage_memoriesCreate, update, or delete one memory in the Brain, your organization's shared memory across agents, people, and conversations.
Potential side effectsrecall_contextCompose Brain context in one call from any subset of three inputs: a topic search, an entity lookup, and specific memory keys, with the expansions selected per input.
Inferred read-onlyfetch_memoriesRead up to 10 memories by exact key in one call, or resolve one Brain card id: a finding id (fnd_...) returns the two memories the Brain marked as contradicting each other; a question id (gq_...) returns the question and what is currently recorded behind it.
Inferred read-onlyfeedback_memoriesRecord whether work that relied on the listed memories succeeded ('worked') or failed ('failed'), with an optional short reason.
Inferred read-onlyCONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.platformpilot-memory]
url = "https://mcp.platformpilot.ai/brain/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"platformpilot-memory": {
"type": "http",
"url": "https://mcp.platformpilot.ai/brain/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: platformpilot-memory
Remote MCP URL: https://mcp.platformpilot.ai/brain/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"platformpilot-memory": {
"url": "https://mcp.platformpilot.ai/brain/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"platformpilot-memory": {
"type": "http",
"url": "https://mcp.platformpilot.ai/brain/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "platformpilot-memory",
"transport": "streamable-http",
"url": "https://mcp.platformpilot.ai/brain/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
ENDPOINT 2
https://mcp.platformpilot.ai/agents/mcp
Known tools 0
No tool metadata was available in the registry cache.
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.platformpilot-ai]
url = "https://mcp.platformpilot.ai/agents/mcp"
enabled = true
bearer_token_env_var = "MCP_BEARER_TOKEN"
Authentication is required. Replace the placeholder locally and never commit a secret.
Claude Code
.mcp.json
{
"mcpServers": {
"platformpilot-ai": {
"type": "http",
"url": "https://mcp.platformpilot.ai/agents/mcp",
"headers": {
"Authorization": "Bearer YOUR_BEARER_TOKEN"
}
}
}
}
Authentication is required. Replace the placeholder locally and never commit a secret.
Claude Desktop
Settings → Connectors → Add custom connector
Name: platformpilot-ai
Remote MCP URL: https://mcp.platformpilot.ai/agents/mcp
Add the URL as a custom connector, then complete its supported authorization flow. Claude Desktop remote connectors are configured in the UI.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"platformpilot-ai": {
"url": "https://mcp.platformpilot.ai/agents/mcp",
"headers": {
"Authorization": "Bearer YOUR_BEARER_TOKEN"
}
}
}
}
Authentication is required. Replace the placeholder locally and never commit a secret.
Visual Studio Code
.vscode/mcp.json
{
"servers": {
"platformpilot-ai": {
"type": "http",
"url": "https://mcp.platformpilot.ai/agents/mcp",
"headers": {
"Authorization": "Bearer ${input:mcp-token}"
}
}
},
"inputs": [
{
"type": "promptString",
"id": "mcp-token",
"description": "platformpilot-ai bearer token",
"password": true
}
]
}
Authentication is required. Replace the placeholder locally and never commit a secret.
Generic MCP
Client-specific MCP configuration
{
"name": "platformpilot-ai",
"transport": "streamable-http",
"url": "https://mcp.platformpilot.ai/agents/mcp",
"headers": {
"Authorization": "Bearer YOUR_BEARER_TOKEN"
}
}
Authentication is required. Replace the placeholder locally and never commit a secret.
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
ENDPOINT 3
https://mcp.platformpilot.ai/apollo/mcp
Known tools 0
No tool metadata was available in the registry cache.
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.platformpilot-ai]
url = "https://mcp.platformpilot.ai/apollo/mcp"
enabled = true
bearer_token_env_var = "MCP_BEARER_TOKEN"
Authentication is required. Replace the placeholder locally and never commit a secret.
Claude Code
.mcp.json
{
"mcpServers": {
"platformpilot-ai": {
"type": "http",
"url": "https://mcp.platformpilot.ai/apollo/mcp",
"headers": {
"Authorization": "Bearer YOUR_BEARER_TOKEN"
}
}
}
}
Authentication is required. Replace the placeholder locally and never commit a secret.
Claude Desktop
Settings → Connectors → Add custom connector
Name: platformpilot-ai
Remote MCP URL: https://mcp.platformpilot.ai/apollo/mcp
Add the URL as a custom connector, then complete its supported authorization flow. Claude Desktop remote connectors are configured in the UI.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"platformpilot-ai": {
"url": "https://mcp.platformpilot.ai/apollo/mcp",
"headers": {
"Authorization": "Bearer YOUR_BEARER_TOKEN"
}
}
}
}
Authentication is required. Replace the placeholder locally and never commit a secret.
Visual Studio Code
.vscode/mcp.json
{
"servers": {
"platformpilot-ai": {
"type": "http",
"url": "https://mcp.platformpilot.ai/apollo/mcp",
"headers": {
"Authorization": "Bearer ${input:mcp-token}"
}
}
},
"inputs": [
{
"type": "promptString",
"id": "mcp-token",
"description": "platformpilot-ai bearer token",
"password": true
}
]
}
Authentication is required. Replace the placeholder locally and never commit a secret.
Generic MCP
Client-specific MCP configuration
{
"name": "platformpilot-ai",
"transport": "streamable-http",
"url": "https://mcp.platformpilot.ai/apollo/mcp",
"headers": {
"Authorization": "Bearer YOUR_BEARER_TOKEN"
}
}
Authentication is required. Replace the placeholder locally and never commit a secret.
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
TRUST AND VERIFICATION EVIDENCE
Loading Trust v2 evidence…
Checking the associated registrable domain. The BuiltWith key remains server-side.
Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.