Agent Plugin
The RTIE Claude Code plugin packages RTIE context, all 9 agent skills, 2 agent commands, and private-preview MCP configuration into a single install.
MCP tool calls require private-preview access until the public T20 server at mcp.rtie.ai ships. Skills, prompts, and context files are useful without MCP access.
Install
claude plugin marketplace add https://docs.rtie.ai/ai-tools/marketplace.json
claude plugin install rtie The plugin sources any MCP connection using your RTIE_API_KEY environment variable — no secrets are shipped in the plugin itself.
What gets installed
MCP server
Configures Claude Code for the private-preview endpoint at https://mcp.rtie.ai/mcp using ${RTIE_API_KEY}. Tool availability depends on tenant access and enabled modules.
Skills
- rtie-quickstart — API key setup, SDK install, first room
- rtie-module-development — @rtie/module-sdk, typed MCP tools, manifest contract
- rtie-schema-and-migrations — Drizzle patterns, bun db:migrate, context_id rules
- rtie-realtime-sync — SpacetimeDB via @rtie/sdk — never direct
- rtie-auth-and-tenancy — Actor types, API key scopes, workspace_type gating
- rtie-action-engine — Signal shapes, rule authoring, action types
- rtie-agentic-commerce — Listings, bidding, buy-now with human confirmation
- rtie-webhooks-and-events — HMAC verification, event catalog, retry policy
- rtie-deploy — wrangler deploy, secrets, HyperDrive, Turborepo
Commands
/rtie-setup— verify API key, check MCP connectivity, create a test room/rtie-new-module— scaffold a new module with manifest, routes, and MCP tools
Manual setup (alternative)
If you prefer to configure manually, add this to your project's .mcp.json:
{
"mcpServers": {
"rtie": {
"type": "http",
"url": "https://mcp.rtie.ai/mcp",
"headers": { "Authorization": "Bearer ${RTIE_API_KEY}" }
}
}
} Download individual skill files from the skills page.
Cursor and other agents
For Cursor: download rtie.mdc and place it at .cursor/rules/rtie.mdc in your project.
For Codex and other agents: download AGENTS-snippet.md and add its contents to your AGENTS.md.