Documentation Index
Fetch the complete documentation index at: https://ahvn.top/llms.txt
Use this file to discover all available pages before exploring further.
Any workspace can become a native Toolkit with schema, CRUD, query, and explain tools.
1. What HeavenBase MCP provides
HeavenBase exposes workspaces and Capsule Toolkits over the Model Context Protocol (MCP), allowing agents to:- inspect the schema (entities, fields, backends)
- read and write entities
- run queries
- call persisted Capsule tools such as math or application functions
2. Create a workspace Toolkit
3. Serve it
4. Serve a Capsule Toolkit
CapsuleManifeststores signature and schema.Toolexposes the Capsule under a tool name.Toolkit.to_fastmcp()builds wrappers with evaluated annotations and the original callable signature.- FastMCP serves native Python return values; scalar results appear as
structured_content["result"]in the client.
5. Available workspace tools
Workspace MCP exposes stable generic tools instead of generating one tool per entity:define_entitylist_entitiesdescribe_entityupsert,upsert_manyget,get_manyset,set_manydelete,delete_manyexists,exists_manycountqueryexplain

