MCP Overview

How the Fenix MCP bridge connects your AI agents to your workspace.

fenix-mcp is a Python server that implements the Model Context Protocol (MCP). It runs locally as a bridge between your AI agents and your Fenix workspace, exposing 12 tools and 68+ actions over stdio or HTTP transport.

Why MCP?

Most project management tools are passive. You open them in a browser, copy-paste context into your AI chat, and lose track of decisions between sessions.

Fenix MCP makes your workspace an active participant:

  • Your AI reads real sprint data instead of guessing
  • Decisions are saved as searchable memories between sessions
  • Tasks can be created, updated, and moved from within your agent
  • Documentation is written and published without leaving the terminal
Agent (Claude / Cursor / Copilot / …)

         │ MCP stdio / HTTP

   fenix-mcp server (local)

         │ HTTPS REST

   Fenix Cloud API

         ├── Work Items
         ├── Memories (pgvector embeddings)
         ├── Docs / Wiki
         ├── Sprints & Boards
         ├── Skills & Rules
         └── API Catalog

Supported agents

AgentTransport
Claude Codestdio
Cursorstdio
Windsurfstdio
GitHub Copilotstdio
OpenAI Codexstdio
Kirostdio
Gemini CLIstdio
Aiderstdio

The 12 MCP tools

ToolDescriptionActions
healthBackend health check1
initializeInit environment, load user context1
teamSwitch teams, list teams3
work_itemsCreate, list, update, move status11
docsCreate, read, update, publish14
productivityPersonal TODOs11
intelligenceSave and search semantic memories4
sprintsList, active sprint, items4
boardsView boards and columns4
skillsInstall and export skills11
api_catalogSemantic search over API docs3
user_configPersonal config documents6

Authentication

Personal Access Token — set FENIX_API_KEY=fxpat_... in your environment.

OAuth 2.1 — handled automatically when using fenix-plugin with Claude Code.

Transport modes

fenix-mcp                           # stdio (default)
fenix-mcp --http --port 8421        # HTTP server
fenix-mcp --http --port 8421 --stdio # both

Next