Tvix

Tvix MCP

Explore the MCP tools, resources, and prompts that power Tvix agent integration. Learn how agents store, search, and retrieve Memory and Wiki context through the Model Context Protocol.

Tvix connects to AI agents via the Model Context Protocol (MCP), providing a standard way for agents to store, search, and retrieve Memory and Wiki context.

At a Glance

TypeNameWhat it does
Toolsearch_memoryHybrid search over personal/work memories
Toolsearch_wikiSearch wiki notes, resources, and projects
Toolcapture_memoryCapture new episodic memory from text
Toolcreate_wiki_noteCreate a wiki note document
Toolget_profileUser profile and core memory blocks
Toolget_recentRecent memories and inbox captures
Toolget_commitmentsOpen commitments for the user
Toolget_blockersOpen blockers for the user
Toolbuild_engineer_briefDaily engineer brief with priorities
Tooldraft_follow_upDraft a follow-up message (may require approval)
Toolassign_memory_projectAssign a memory to a wiki project
Resourceexecution-twin://profileRead-only profile / core blocks
Resourceexecution-twin://recentRead-only recent memory timeline
PromptstartGuidance for memory workflow and safety

You don't need to call these yourself. Your agent handles them based on the conversation.

Memory vs Wiki

Tvix exposes two complementary stores through MCP:

  • Memory (capture_memory, search_memory): Personal and work context — preferences, decisions, episodes from agents and integrations.
  • Wiki (create_wiki_note, search_wiki): Knowledge Atlas notes, projects, and resources.

For user questions, agents should generally call both search_memory and search_wiki, then combine the results. See the Knowledge Wiki guide.

MCP Server

Tvix runs a remote MCP server (Streamable HTTP) at:

https://api.tvix.ai/mcp

Locally / Tvix for Mac: http://127.0.0.1:8000/mcp. When MCP_PUBLIC_URL / NEXT_PUBLIC_MCP_PUBLIC_URL is set (OAuth tunnels), the public URL is {that origin}/mcp.

PropertyValue
TransportStreamable HTTP
AuthenticationBearer agent token (most clients); OAuth for ChatGPT / Poke
Path/mcp on the API host

OpenClaw does not use this MCP endpoint — see OpenClaw.

Generate a token and copy client-specific config from the dashboard Agents tab (+ Add Agent). See the Agents guide for per-client setup.

Note: There is no separate mcp.tvix.ai host in this deployment. Production MCP is served from the API domain (api.tvix.ai).

Tools

ToolParametersNotes
search_memoryquery (required), limit (default 10)Hybrid search with citations
capture_memorycontent (required), source_type (default agent)Write tool; may require approval in dashboard mode
get_recentlimit (default 15)Recent memories + inbox
assign_memory_projectmemory_id (required), project_id (optional)Link a memory to a wiki project

Wiki

ToolParametersNotes
search_wikiquery (required), limit (default 20)Notes, resources, projects
create_wiki_notename (required), content (optional)Creates a Knowledge Atlas wiki note

There are currently no MCP tools named add_memory, add_wiki, update_wiki, delete_wiki, or get_current_date. Edit or delete wiki notes from the dashboard Wiki UI (or workspace APIs).

Attention / briefs

ToolParametersNotes
get_profile(none)Profile + core memory blocks
get_commitments(none)Open commitments
get_blockers(none)Open blockers
build_engineer_brief(none)Engineer daily brief
draft_follow_upcontext (required), channel (default slack)Draft for human approval

Resources

ResourceURIDescription
User Profileexecution-twin://profileProfile and core blocks (same data as get_profile)
Recentexecution-twin://recentRecent memories / inbox (same data as get_recent)

The execution-twin:// URI scheme is the current resource identifier in the hosted MCP server (legacy internal name). Prefer the matching tools if a client does not surface resources.

Prompts

PromptDescription
startTeaches the agent when to search Memory vs Wiki, when to capture, and what to avoid storing
  1. For questions about saved knowledge, search Memory and Wiki together when both could matter.
  2. Save durable personal context with capture_memory; skip secrets and one-off transient data unless explicitly requested.
  3. Save factual / reference notes with create_wiki_note.
  4. Use get_profile / execution-twin://profile for stable user settings.
  5. Use get_recent / execution-twin://recent for latest timeline context.

Connection Setup

For detailed setup instructions for each agent, see the Agents guide.

Next Steps

Memory

Explore and manage memories.

Knowledge Wiki

Knowledge Atlas notes, projects, and inbox.

Chat in Dashboard

Talk to your knowledge base without an external agent.
Was this page helpful?