kylrix

Kylrix Model Context Protocol (MCP) Server

smithery badge

Connect Cursor, Claude Desktop, Claude Code, and autonomous agents to your Kylrix workspace.

Wire any agent in 60 seconds


Endpoint

Production: https://www.kylrix.space/api/v1/mcp

Self-hosted? See SELFHOST.md for your instance URL.


Quick Connect

Mint a PAT at Settings → Developers (kyl_pat_…), then:

npx -y @smithery/cli install kylrix/kylrix --client cursor
npx -y @smithery/cli install kylrix/kylrix --client claude
npx -y @smithery/cli install kylrix/kylrix --client windsurf
npx -y @smithery/cli install kylrix/kylrix --client codex
npx -y @smithery/cli install kylrix/kylrix --client antigravity

Claude Code (manual)

claude mcp add --transport http kylrix https://www.kylrix.space/api/v1/mcp \
  --header "Authorization: Bearer <YOUR_PAT_TOKEN>"

Cursor / Claude Desktop (manual)

Copy .cursor/mcp.json.example.cursor/mcp.json (never commit tokens).

{
  "mcpServers": {
    "kylrix": {
      "type": "http",
      "url": "https://www.kylrix.space/api/v1/mcp",
      "headers": {
        "Authorization": "Bearer <YOUR_PAT_TOKEN>"
      }
    }
  }
}

Mint PAT: Settings → Developers on kylrix.space.


Available MCP Tools

Category Tools
Identity & Scopes get_my_profile, get_token_info, list_available_scopes, refresh_token_scopes
Workspaces list_workspaces, get_workspace, create_workspace, update_workspace, delete_workspace, list_workspace_collaborators, add_workspace_collaborator
Notes & Ideas list_notes, get_note, create_note, update_note, delete_note
Goals & Tasks list_goals, get_goal, create_goal, update_goal, delete_goal
Calendar & Events list_events, get_event, create_event, update_event, delete_event
Forms list_forms, get_form, create_form, delete_form
Chats list_chats, get_chat, list_chat_messages, send_chat_message
Flows list_flows, get_flow, create_flow, delete_flow
Tags list_tags, create_tag, delete_tag
Moments list_moments, get_moment, create_moment, list_moment_comments, create_moment_comment
Threads list_thread_messages, create_thread_message
Agent Sessions list_agent_sessions, get_agent_session, create_agent_session
Trash list_trash, restore_trash, purge_trash

Authentication

Unified with REST

MCP tools/call and /api/v1/* share ApiResources. Goal fields: sdk/contracts/goals.ts.