Design semantic contracts in Studio. Publish the ontology to Hub. Deploy to Runtime — one click to a live MCP endpoint. Then run: any agent connects and queries your data by meaning, not by guessing column names.
Drag-and-drop classes and relationships. Map your database to the ontology with AI suggestions. Then publish the ontology to Hub to share it, or deploy to Runtime with one click for a live MCP endpoint on your own data.
Explore Studio →Every Runtime deployment has a versioned MCP endpoint your agents connect to directly. Paste the URL into Claude Desktop or LangChain — your agent queries real data using semantic concepts, not guessed column names.
See how it works →Studio produces two things: a portable ontology you publish to Hub, and a versioned OPS package (Ontology-Package Specification) — that same ontology plus your database mapping and an AI-ready tool schema — that deploys as a live cloud runtime. Agents connect via MCP with no infrastructure required.
Ontology-Package Specification — five files, one versioned zip.
{
"mcpServers": {
"banking": {
"url": "https://api.ontoboom.com/runtime/{id}/mcp"
}
}
}from langchain_mcp_adapters.client import MultiServerMCPClient
async with MultiServerMCPClient({
"banking": {
"url": "https://api.ontoboom.com/runtime/{id}/mcp",
"transport": "streamable_http",
}
}) as client:
tools = await client.get_tools()
agent = create_react_agent(llm, tools)
await agent.ainvoke({
"messages": [("user",
"Show investment accounts opened in the last 30 days")]
})Each surface works independently. Together they close the loop: design → publish → deploy → run.
Studio seats. Hub tiers. Metered MCP. Pick what you need; upgrade when it matters.