Documentation

MCP Integration

Connect your favorite AI coding tool to Axiomry MCP Server for task management and project organization.

What is MCP?

The Model Context Protocol (MCP) is an open standard that enables AI assistants to securely connect to external data sources and tools. With Axiomry's MCP integration, your AI coding tools can directly access and manage your projects, tasks, and workflows.

Benefits

  • Natural language task management through AI conversations
  • Seamless integration with your existing development workflow
  • Real-time project updates and task synchronization
  • Secure access token-based authentication

Getting Started

  1. Create an Access Token: Go to Settings → MCP Server Access in your Axiomry dashboard and create a new access token.
  2. Configure Your Tool: Follow the specific setup instructions for your preferred AI coding tool below. Each tool has its own configuration process, but all use the same Axiomry MCP endpoint.
  3. Start Using: Ask your AI assistant natural language questions about your Axiomry projects and tasks. View Supported Tools →

Project Management Tools

Tools for discovering and managing projects within your workspace.

axiomry_list_projects

Get all projects for the authenticated user to help with project discovery and selection.

task:read

Example Usage:

"Show me all my projects"

axiomry_find_project

Find and resolve a project by name or partial name match with smart disambiguation.

task:read

Example Usage:

"Find the project called "E-commerce Platform""

axiomry_get_project_details

Get detailed project context including summary, problem, solution, audience, stage, and key counts.

task:read

Example Usage:

"Show project details for "Axiomry" so I can review current context before coding"

axiomry_list_project_competitors

Get the stored competitor analysis for a project from Axiomry.

task:read

Example Usage:

"Show competitors for project "Axiomry""

axiomry_get_project_prd

Get the full stored Product Requirements Document (PRD) markdown for a project.

task:read

Example Usage:

"Get the PRD for project "Axiomry""

axiomry_get_project_tech_stack

Get the stored tech stack for a project grouped by categories.

task:read

Example Usage:

"Show tech stack for project "Axiomry""

Task Management Tools

Core tools for managing individual tasks and task workflows.

axiomry_list_tasks

Get tasks for the authenticated user with optional filtering by project, status, priority, and blocked state.

task:read

Example Usage:

"Get all my high-priority tasks in the "API Development" project"

axiomry_list_available_tasks

Get unblocked tasks in todo status, sorted by priority - ideal for starting new work.

task:read

Example Usage:

"Show me available tasks I can start working on"

axiomry_get_task_details

Get detailed information about a specific task including dependencies and full description.

task:read

Example Usage:

"Get details for task "Implement user authentication""

axiomry_start_task

Move a task from todo to in-progress status to begin working on it.

task:write

Example Usage:

"Start working on the "API endpoint implementation" task"

axiomry_complete_task

Mark a task as done, which will automatically unblock any dependent tasks.

task:write

Example Usage:

"Mark the "Database migration" task as complete"

axiomry_pause_task

Move a task back to todo status so it returns to the available work queue.

task:write

Example Usage:

"Pause the "Frontend refactoring" task"

axiomry_update_task

Edit an existing task: change its title, description, priority, labels, and/or status. Only the fields you provide are changed.

task:write

Example Usage:

"Rename task PRJ-12, bump it to high priority, and move it to code review"

axiomry_create_task

Create a new task with optional dependencies, labels, and epic assignment.

task:write

Example Usage:

"Create a high-priority task for implementing user authentication"

axiomry_create_tasks_bulk

Create multiple tasks in a single operation for improved efficiency when setting up project structures.

task:write

Example Usage:

"Create 5 tasks for the authentication feature implementation"

axiomry_update_task_statuses_bulk

Update multiple task statuses in a single operation, useful for batch status changes.

task:write

Example Usage:

"Mark all tasks in project X as done"