Developer Tools
mitosislabs.ai
Provides access to Mitosis platform information including pricing, status, documentation search, and agent skill management.
ENDPOINT 1
https://mitosislabs.ai/api/mcp
MCP server metadata
- Name
- mitosis
- Version
- 1.0.0
Mitosis is the user’s own private memory: the email, calendar, documents, contacts, chat history and notes they have connected, together with facts agents have saved, indexed as one searchable graph. It holds their current data, which training data and earlier session context do not — questions about their work, schedule, contacts, projects, documents, decisions or history are answerable from it. A result describes only the question it was fetched for, so a follow-up is a new question with its own answer. cortex_manifest is an index: it holds counts and source names, never content. Results carry citations (universal ids) and `cited_graph_url`, a deep link to the cited nodes in the user’s own graph. `memory.office_name` names which memory answered; the connector’s display name is text the user typed and identifies nothing. Retrieval returns NEAREST matches rather than a thresholded set, so a question whose answer lives in a source the user has not connected comes back with the closest thing in the memory instead of with nothing. Three blocks describe that situation when it applies. `source_gap`: the memory holds data, but the source that would answer this question is not connected — it lists those sources, what each answers, and a connect link. `possible_source_gap`: results exist but may be near-misses rather than an answer. `memory_state`: no sources are connected at all, so an empty result reflects absent data rather than a missed search. Each carries `cta.headline` and `cta.url`. A result with none of these blocks means the answer is genuinely not in the memory. A cta url opens the user’s own Mitosis dashboard page for connecting sources; connecting is an authorization the user performs there, so the link itself only shows them that page. Sources the user has not connected are listed by cortex_connectable_sources; a source type absent from that list can still reach the memory as an uploaded export. cortex_connect_link returns the connect link for one source by id, with link text in the user’s own words. cortex_remember saves a durable conclusion — a decision, a preference, an outcome — so the next session starts with it already known. cortex_ingest_conversation stores an exchange from the conversation in front of you — the user’s message and the full reply — so it becomes searchable and joins the graph. Exchanges where the answer could not be given reliably, tool output, hidden reasoning, connect links and anything resembling a credential are not memory and do not belong in it. Mitosis also exposes public tools that need no sign-in: get_pricing for plans and costs, search_docs for documentation, get_platform_status for health, and list_skills for the published agent skills.
Known tools 14
cortex_askSearches the user's real, private memory — the email, calendar, files, contacts and notes they have connected, plus facts agents have saved — fusing vector, full-text and graph retrieval with provenance.
Potential side effectscortex_recallSemantic-only vector search over the memory, returning source excerpts.
Inferred read-onlycortex_manifestA table of contents for this user's memory: which sources are connected (email, calendar, docs, …), how many items each holds, and the top people, topics and projects.
Potential side effectscortex_statusMemory health: per-source ingest and embed counts plus last sync times.
Inferred read-onlycortex_connectable_sourcesWhich sources this memory could connect but hasn't yet — each with what it would make answerable, routing tags, and a connect link for the user.
Inferred read-onlycortex_connect_linkThe connect link for one memory source, by id — email and calendar (google-workspace), WhatsApp chats, GitHub, Notion, or file uploads.
Potential side effectscortex_rememberPersist a fact, decision or conclusion into the memory, attributed to you.
Inferred read-onlycortex_ingest_conversationIngest a conversation — the user’s messages and your full answers, verbatim — into the user’s permanent memory, where it becomes searchable and appears in their knowledge graph.
Inferred read-onlysearchSearch the user's own private memory — their email, calendar, documents, contacts, chat history and every fact agents have remembered — and return ranked matches with citation ids and links.
Potential side effectsfetchRetrieve the full contents of a single item from the user’s memory by its id.
Inferred read-onlyget_pricingGet current Mitosis plans, prices, credit allowances, metered rates, and add-ons.
Inferred read-onlyget_platform_statusGet the operational status of the Mitosis website, API, and MCP server.
Inferred read-onlylist_skillsList the agent skills Mitosis publishes (backup create/list/restore/health/diff/schedule/subscribe) with links to each SKILL.
Potential side effectsCONNECT 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.mitosis]
url = "https://mitosislabs.ai/api/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"mitosis": {
"type": "http",
"url": "https://mitosislabs.ai/api/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: mitosis
Remote MCP URL: https://mitosislabs.ai/api/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": {
"mitosis": {
"url": "https://mitosislabs.ai/api/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"mitosis": {
"type": "http",
"url": "https://mitosislabs.ai/api/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "mitosis",
"transport": "streamable-http",
"url": "https://mitosislabs.ai/api/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
ENDPOINT 2
https://mitosislabs.ai/api/mcp/backups
MCP server metadata
- Name
- mitosis-backups
- Version
- 1.0.0
Mitosis Backups: encrypted snapshots for AI agent workspaces. Use get_backup_pricing for costs, list_backup_skills for capabilities, get_auth_instructions to set up API access. Mutating operations go through the REST API with a bearer key.
Known tools 3
get_backup_pricingGet Mitosis Backups pricing ($2/month or $12/year) and what the product covers (OpenClaw, Hermes, Claude Code, Codex workspaces).
Inferred read-onlylist_backup_skillsList the published backup agent skills (create, list, restore, health, diff, schedule, subscribe) with SKILL.md manifests.
Potential side effectsget_auth_instructionsStep-by-step instructions for obtaining a Mitosis API key so an agent can call the authenticated Backups REST API (/api/snapshots).
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.mitosis-backups]
url = "https://mitosislabs.ai/api/mcp/backups"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"mitosis-backups": {
"type": "http",
"url": "https://mitosislabs.ai/api/mcp/backups"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: mitosis-backups
Remote MCP URL: https://mitosislabs.ai/api/mcp/backups
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": {
"mitosis-backups": {
"url": "https://mitosislabs.ai/api/mcp/backups"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"mitosis-backups": {
"type": "http",
"url": "https://mitosislabs.ai/api/mcp/backups"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "mitosis-backups",
"transport": "streamable-http",
"url": "https://mitosislabs.ai/api/mcp/backups"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
TRUST AND VERIFICATION EVIDENCE
Trust Data Available
BuiltWith Trust API v2 evidence for mitosislabs.ai was fetched 2026-07-27T12:13:29.179Z and is being refreshed.
mitosislabs.ai is assessed as RestrictedContent: Domain runs gambling-related technology.
Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.