Documentation Index
Fetch the complete documentation index at: https://ahvn.top/llms.txt
Use this file to discover all available pages before exploring further.
HeavenBase has two MCP paths: workspace tools for data, and Capsule Toolkits for Python functions.
1. Choose a surface
Use Workspace MCP when an agent needs to inspect entities, define schemas, write rows, run JSON queries, explain routing, or use the memory profile. Use MCP in HeavenBase when you need to package reviewed Python callables as a Toolkit, persist them in the registry, and serve them through FastMCP.2. Generate client config
Workspace servers and Toolkit servers both exposeto_mcp_json(...):
3. Keep tool surfaces small
For agent-facing workspace access, preferprofile="agent", profile="memory", or profile="memstate" before exposing profile="full":
profile="memory" for a small note surface. Use profile="memstate" when the agent needs project keypaths, current-state browsing, version history, conflict visibility, and soft deletes. The full workspace profile includes delete and bulk operations. Keep it for trusted application code, tests, and administrative flows.

