MCP Tool Reference

Kera exposes 87+ tools via the Model Context Protocol (MCP). Your AI agents discover and use them automatically — no SDK, no wrapper, no custom integration.

Connection

Add the Kera MCP endpoint to your agent or client configuration. Kera supports two transport modes:

  • Streamable HTTP (recommended) — stateless, works behind any load balancer.
  • HTTP+SSE (legacy) — for clients like Claude Code that require Server-Sent Events.
// .mcp.json { "kera": { "url": "https://your-workspace.getkera.eu/mcp/" } }

Authentication

Requests are authenticated via your session. MCP clients inherit your workspace permissions automatically. No API keys to manage — your agent operates with the same access as your user account.

How tool discovery works

Kera exposes 4 meta-tools that your agent uses to navigate the full tool catalog:

search_tools Find relevant tools by keyword or intent
describe_tools Get full schemas and parameter details
execute_tool Run any tool with the required parameters
render_diagram Generate visual diagrams from workspace data

Your agent calls search_tools to find what it needs, describe_tools to get the schema, then execute_tool to run it. This keeps the tool surface small while exposing the full catalog.

Resources

MCP Resources expose workspace data that agents can read as context.

URI Name MIME Type
kera://workspace/{workspace_id}/tickets Tickets application/json
kera://workspace/{workspace_id}/docs Documents application/json
kera://workspace/{workspace_id}/projects Projects application/json
kera://workspace/{workspace_id}/newsfeeds Newsfeed application/json

Prompts

MCP Prompts provide pre-built instructions that agents can use for common tasks.

Name Description
weekly_standup Generate a weekly standup summary for a project
project_status Generate a project status report
write_ticket Help write a well-structured ticket
summarise_doc Summarise a document

Tool Domains

Tools are organized into domains. Select a domain to see its full tool reference.