← Registry

Developer Tools

mitosislabs.ai

Provides access to Mitosis platform information including pricing, status, documentation search, and agent skill management.

2 endpoints17 known toolsFirst detected July 25, 2026Last detected August 29, 2026

ENDPOINT 1

https://mitosislabs.ai/api/mcp

No auth detected

MCP server metadata

Name
mitosis
Version
1.0.0
Capabilities
toolsresourcesprompts
Server instructions

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_ask

Searches 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 effects
cortex_recall

Semantic-only vector search over the memory, returning source excerpts.

Inferred read-only
cortex_manifest

A 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 effects
cortex_status

Memory health: per-source ingest and embed counts plus last sync times.

Inferred read-only
cortex_connectable_sources

Which 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-only
cortex_connect_link

The connect link for one memory source, by id — email and calendar (google-workspace), WhatsApp chats, GitHub, Notion, or file uploads.

Potential side effects
cortex_remember

Persist a fact, decision or conclusion into the memory, attributed to you.

Inferred read-only
cortex_ingest_conversation

Ingest 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-only
search

Search 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 effects
fetch

Retrieve the full contents of a single item from the user’s memory by its id.

Inferred read-only
get_pricing

Get current Mitosis plans, prices, credit allowances, metered rates, and add-ons.

Inferred read-only
get_platform_status

Get the operational status of the Mitosis website, API, and MCP server.

Inferred read-only
search_docs

Keyword-search Mitosis documentation and product pages.

Inferred read-only
list_skills

List the agent skills Mitosis publishes (backup create/list/restore/health/diff/schedule/subscribe) with links to each SKILL.

Potential side effects

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.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

No auth detected

MCP server metadata

Name
mitosis-backups
Version
1.0.0
Capabilities
toolsresourcesprompts
Server instructions

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_pricing

Get Mitosis Backups pricing ($2/month or $12/year) and what the product covers (OpenClaw, Hermes, Claude Code, Codex workspaces).

Inferred read-only
list_backup_skills

List the published backup agent skills (create, list, restore, health, diff, schedule, subscribe) with SKILL.md manifests.

Potential side effects
get_auth_instructions

Step-by-step instructions for obtaining a Mitosis API key so an agent can call the authenticated Backups REST API (/api/snapshots).

Inferred read-only

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.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.

Trust status RestrictedContent

mitosislabs.ai is assessed as RestrictedContent: Domain runs gambling-related technology.

Indexed

Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.