Complete reference for all 12 MCP tools and their 68+ actions.
Every action is called through its tool with an action field selecting the operation. Call initialize first — most tools require team context.
initialize
Bootstrap the session. Always call this first.
| Action | Description |
|---|
init | Load user context, tenant, teams, core docs |
health
| Action | Description |
|---|
health_check | Returns service health, version, and latency |
team
| Action | Description |
|---|
team_list | List all teams in the workspace |
team_switch | Set the active team by name or ID |
team_current | Show the currently active team |
Action: team_switch
team_query: "Development"
work_items
| Action | Description |
|---|
work_item_create | Create a single work item |
work_item_bulk_create | Create multiple items in one call |
work_item_list | List items with filters |
work_item_get | Get a single item by ID or key |
work_item_update | Update fields on an item |
work_item_delete | Delete an item |
work_status_in_progress | Move item to in-progress |
work_status_done | Move item to done |
work_status_backlog | Move item to backlog |
work_item_add_to_sprint | Assign item to a sprint |
work_item_remove_from_sprint | Remove item from sprint |
Item types: epic → feature → story → task / bug
Action: work_item_create
type: story
title: "Add MCP health check endpoint"
priority: high
sprint_id: "uuid"
parent_id: "feature-uuid"
story_points: 3
docs
| Action | Description |
|---|
doc_create | Create a document or folder |
doc_list | List documents |
doc_get | Get a document with full content |
doc_update | Update title, content, status |
doc_delete | Delete a document |
doc_full_tree | Full recursive tree |
doc_children | Direct children of a folder |
doc_move | Move to new parent |
doc_publish | Publish a draft |
doc_version | Create a version snapshot |
doc_duplicate | Duplicate a document |
doc_roots | Root-level documents |
doc_recent | Recently updated |
doc_analytics | View counts and engagement |
Document types: folder, page, guide, api_doc
productivity
Personal TODO items — private to the user.
| Action | Description |
|---|
todo_create | Create a TODO |
todo_list | List with filters |
todo_get | Get a single TODO |
todo_update | Update a TODO |
todo_delete | Delete a TODO |
todo_complete | Mark as complete |
todo_uncomplete | Reopen a completed TODO |
todo_stats | Count by status and category |
todo_search | Full-text search |
todo_overdue | List overdue items |
todo_category_list | List all categories |
intelligence
Semantic memory with pgvector embeddings.
| Action | Description |
|---|
memory_save | Save a memory with tags and metadata |
memory_search | Semantic + keyword search |
memory_get | Get a memory by ID |
memory_delete | Delete a memory |
Action: memory_save
title: "SSO domain decision"
content: "We keep SSO on the same domain to avoid CORS and simplify cookie handling."
tags: ["decision", "auth", "sso"]
work_item_id: "story-uuid"
Action: memory_search
query: "SSO authentication approach"
tags: ["decision"]
limit: 10
Natural language queries work best — the query is embedded and matched by cosine similarity.
sprints
| Action | Description |
|---|
sprint_list | List all sprints |
sprint_get | Get sprint details |
sprint_active | Get the current active sprint |
sprint_work_items | List all items in a sprint |
boards
| Action | Description |
|---|
board_list | List boards in the active team |
board_get | Get a board and its columns |
board_columns | Columns and their status mappings |
board_items | Items in a specific column |
skills
| Action | Description |
|---|
skill_list | List skills |
skill_get | Get by ID or slug |
skill_export | Export a skill's instructions |
skill_export_merged | Export with all dependencies merged |
skill_install | Install from marketplace |
skill_uninstall | Uninstall |
skill_update | Update skill content |
skill_create | Create a new skill |
skill_delete | Delete |
skill_publish | Publish to marketplace |
skill_version | Create a version snapshot |
Action: skill_export_merged
query: "fenix-technical-development"
api_catalog
| Action | Description |
|---|
api_search | Semantic search over API endpoints |
api_get | Get a specific endpoint by ID |
api_list | List endpoints with filters |
user_config
| Action | Description |
|---|
config_list | List all config documents |
config_get | Get a config document |
config_create | Create a config document |
config_update | Update a config document |
config_delete | Delete a config document |
config_search | Search config documents |