Odel
Astravue MCP

Astravue MCP

@astravueorgDeveloper Tools12Apache-2.0Updated 1w ago

Manage projects, tasks, time tracking, and team collaboration through natural language.

Server endpointStreamable HTTP

This is the third-party server itself — Odel doesn't run it. Hitting this URL directly talks straight to the upstream server with no auth or proxying. Connect through Odel to front it with managed auth.

Astravue

Website Documentation Latest release Apache License 2.0 Official MCP Registry Official on PulseMCP Listed on Vibehackers Listed on MCP Market Listed on Glama.ai Claude Code plugin

Install MCP Server in Cursor

Astravue MCP Server

Astravue MCP demo
Click the image to download the full demo (with audio).

The Astravue MCP Server is a cloud-based bridge between your Astravue workspace and compatible AI tools. Once configured, it enables those tools to interact with your spaces, projects, tasks, time entries, and custom fields in real time. All actions are authenticated via OAuth 2.0 and respect the user's existing access controls.

With the Astravue MCP Server, you can:

  • Search and browse spaces, projects, and tasks without switching tools.
  • Create and update tasks, subtasks, checklists, and comments through natural language.
  • Track time with live timers or manual entries and generate timesheet reports.
  • Manage custom fields including dropdowns, dates, currencies, and more.
  • Automate workflows like sprint planning, status reporting, and bulk task updates.

It's designed for project managers, developers, and teams who use AI-powered IDEs or assistants and want to manage work without context switching.

Full product documentation lives at docs.astravue.com.


Supported Clients

All clients connect to the same endpoint: https://api.astravue.com/mcp You will be asked to sign in to Astravue in your browser the first time you connect.

ClientDocsTransport
Claude CodeMCP setupStreamable HTTP
Claude DesktopMCP setupStreamable HTTP
Claude.ai (Web)Remote MCPStreamable HTTP
Claude MobileStreamable HTTP
CursorMCP setupStreamable HTTP
VS CodeMCP setupStreamable HTTP
WindsurfMCP setupStreamable HTTP
ClineMCP setupStreamable HTTP
JetBrains IDEsMCP setupStreamable HTTP
Gemini CLIMCP setupStreamable HTTP

Setup Instructions

Claude Code

You have two installation options. Option A installs the full plugin (MCP server + eight productivity skills). Option B installs only the MCP server.

Option A — Install as a Claude Code plugin (recommended)

The plugin bundles the MCP server with eight pre-built skills that automate common project management workflows. It is listed in Anthropic's community plugin marketplace.

Inside Claude Code, run:

/plugin marketplace add anthropics/claude-plugins-community
/plugin install astravue@claude-community
/reload-plugins

Alternatively, install directly from this repository:

/plugin marketplace add AstravueOrg/astravue-mcp-server
/plugin install astravue@astravue
/reload-plugins

After install, run /mcp to confirm astravue is connected, then open /plugin and switch to the Installed tab to view the bundled skills.

See Anthropic's plugin discovery docs for installation scopes (user, project, local).

Option B — Install only the MCP server

If you only want the raw MCP server without the bundled skills, run:

claude mcp add --transport http astravue https://api.astravue.com/mcp

Your browser will open automatically. Sign in with your Astravue account and click Approve.

To confirm the connection, run /mcp in a new Claude Code session. You should see astravue listed with a green connected status.

Share connection across a project team

Add the --scope project flag to create a .mcp.json file in your project root:

claude mcp add --transport http --scope project astravue https://api.astravue.com/mcp

Commit .mcp.json to your repository so teammates automatically get the connection.


Claude Desktop

Requires a Claude Pro, Max, Team, or Enterprise plan.

  1. Go to Settings → Connectors in Claude Desktop.
  2. Click Add custom connector and enter: https://api.astravue.com/mcp
  3. Sign in with your Astravue account in the browser and click Approve.
Manual config file setup (advanced)

If Connectors is not available in your Claude Desktop version, edit:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "astravue-mcp": {
      "type": "http",
      "url": "https://api.astravue.com/mcp"
    }
  }
}

Save the file and restart Claude Desktop.


Claude.ai (Web)

Requires a Claude Pro, Max, Team, or Enterprise plan.

  1. Go to claude.aiSettings → Connectors
  2. Click Add connector and enter: https://api.astravue.com/mcp
  3. Sign in with your Astravue account in the browser and click Approve.

Claude Mobile (iOS / Android)

Claude Mobile uses the same connector ecosystem as Claude.ai.

Add the connector on Claude.ai (web) or Claude Desktop first — it will automatically appear on your mobile app. No separate setup needed.


Cursor

  1. Go to Cursor Settings → Tools & MCP
  2. Click New MCP Server — this opens your mcp.json file
  3. Add the following configuration:
{
  "mcpServers": {
    "astravue-mcp": {
      "url": "https://api.astravue.com/mcp"
    }
  }
}
  1. Save the file. Your browser will open — sign in with your Astravue account and click Approve.
Project-level configuration

Create a .cursor/mcp.json file in your project root with the same config above. This scopes the connection to that project only.


VS Code

  1. Add a .vscode/mcp.json file to your project root:
{
  "servers": {
    "astravue-mcp": {
      "type": "http",
      "url": "https://api.astravue.com/mcp"
    }
  }
}
  1. Open Command Palette (Cmd+Shift+P on macOS, Ctrl+Shift+P on Windows), run MCP: List Servers, and click Start next to astravue-mcp.
  2. Authenticate with your Astravue account in the browser.
User-level configuration (all projects)

Add this to your User Settings (JSON):

{
  "mcp": {
    "servers": {
      "astravue-mcp": {
        "type": "http",
        "url": "https://api.astravue.com/mcp"
      }
    }
  }
}

Windsurf

  1. Open the Windsurf MCP config file:

    • macOS / Linux: ~/.codeium/mcp_config.json
    • Windows: C:\Users\[username]\.codeium\mcp_config.json
    • Or go to Settings → Tools → Windsurf Settings → Add Server
  2. Add the following:

{
  "mcpServers": {
    "astravue-mcp": {
      "serverUrl": "https://api.astravue.com/mcp"
    }
  }
}

If you already have other servers in your config, add astravue-mcp alongside them inside the existing mcpServers object — don't replace the entire file.

  1. Reload Windsurf and authenticate with your Astravue account.

Cline

  1. Click the Cline icon in the VS Code sidebar → click the menu (⋮) in the top right → select MCP Servers.
  2. Go to the Remote Servers tab and fill in:
    • Server Name: astravue-mcp
    • Server URL: https://api.astravue.com/mcp
    • Transport Type: Streamable HTTP
  3. Click Add Server. Your browser will open — sign in and click Approve.
Manual JSON configuration

Click Configure MCP Servers in the Configure tab to open cline_mcp_settings.json and add:

{
  "mcpServers": {
    "astravue-mcp": {
      "url": "https://api.astravue.com/mcp",
      "type": "streamableHttp"
    }
  }
}

JetBrains (IntelliJ, WebStorm, PyCharm, etc.)

  1. Go to Settings → Tools → AI Assistant → Model Context Protocol (MCP)
  2. Click Add → Select Streamable HTTP → Paste:
{
  "mcpServers": {
    "astravue-mcp": {
      "url": "https://api.astravue.com/mcp"
    }
  }
}
  1. Click OK, then Apply. Sign in with your Astravue account in the browser.

Gemini CLI

Copy gemini-extension.json from this repository to your Gemini CLI extensions directory, or add the server URL to your Gemini MCP configuration.


Other MCP Clients

For any client that supports Streamable HTTP + OAuth 2.0:

SettingValue
Server URLhttps://api.astravue.com/mcp
TransportStreamable HTTP
AuthenticationOAuth 2.0 (Authorization Code + PKCE)
SSE-only clients (mcp-remote bridge)

If your client only supports SSE transport, run:

npx -y mcp-remote@latest https://api.astravue.com/mcp

Point your client to the local mcp-remote process instead of the Astravue URL.


How It Works

Astravue MCP exposes workspace operations as tools that AI assistants can call. Each tool performs a specific action in your Astravue workspace such as creating projects, managing tasks, logging time, or retrieving reports.

When an AI assistant receives a request, it selects the appropriate tool based on the user's prompt and executes it with the required parameters.

Authentication: All tools require an active authenticated session. If a tool call fails with 401 Unauthorized, reconnect your AI client to refresh your session.

Destructive actions: Some tools perform destructive actions such as deleting tasks, projects, or spaces. Most AI clients require confirmation before executing these operations. Always review actions before approving them.


Permissions

Astravue MCP respects the same role-based access control as the Astravue web app. Every tool call is executed as your authenticated user with your existing permissions. You cannot access or modify anything through MCP that you cannot access in the app.

Organization Roles

RoleMCP Access
Account AdminFull access to all spaces, projects, and tasks across the organization
AdminFull access to all spaces, projects, and tasks across the organization
ManagerCan manage spaces and projects they are a member of
MemberCan read and write within spaces and projects they belong to
GuestRead-only. Cannot perform any write operations through MCP

Space-Level Permissions

ActionRequired Role
List spaces, view space detailsSpace Member
Create, update, delete a spaceOrg Admin or Manager

Project-Level Permissions

ActionRequired Role
List tasks, view project detailsProject Member
Create or update tasksProject Member
Add project members, delete projectProject Admin
Manage custom fields, statusesProject Admin

Task-Level Permissions

ActionRequired Role
View tasks, comments, checklistsProject Member
Create tasks, add comments, log timeProject Member
Delete a taskTask Owner, Task Creator, or Project Admin
Delete a commentComment Creator or Org Admin

If a tool call returns 403 Access Denied, it means your account does not have the required role for that action. Contact your workspace admin to update your permissions.


Example Workflow

A user asks an AI assistant:

"Create a new sprint called Sprint 5 and add tasks for login, payments, and API docs."

The AI assistant may execute these tools:

  1. astravue_create_project — creates the Sprint 5 project
  2. astravue_bulk_create_tasks — creates the three tasks in one call
  3. astravue_update_task — sets priorities or due dates as needed

This allows complex project setup to be completed from a single conversation.


Available Tools

The Astravue MCP Server provides 87 tools across the following categories.

Spaces (5 tools)
ToolDescriptionExample Prompt
astravue_list_spacesLists all spaces in your organization"Show me all my spaces"
astravue_get_spaceGets details of a specific space including its projects"What projects are in the Design space?"
astravue_create_spaceCreates a new space"Create a space called Product Development"
astravue_update_spaceUpdates a space name or settings"Rename the Marketing space to Growth"
astravue_delete_spacePermanently deletes a space and all its contents"Delete the archived Test space"
Projects (6 tools)
ToolDescriptionExample Prompt
astravue_list_projectsLists all projects within a space"List all projects in the Engineering space"
astravue_get_projectGets full details of a specific project"What's the current status of Sprint 3?"
astravue_create_projectCreates a new project inside a space"Create a project called Q2 Roadmap in the Product space"
astravue_update_projectUpdates a project's name, status, priority, or health"Mark Sprint 1 as completed"
astravue_delete_projectPermanently deletes a project and all its tasks"Delete the duplicate Onboarding project"
astravue_add_project_memberAdds an existing workspace member to a project"Add john@company.com to the Backend project"
Tasks (13 tools)
ToolDescriptionExample Prompt
astravue_list_project_tasksLists all tasks within a project"Show all open tasks in Sprint 2"
astravue_get_taskGets full task details"What's the status of the login bug task?"
astravue_find_tasksSearches tasks by keyword across all projects"Find all tasks related to payments"
astravue_create_taskCreates a task in a project"Create a high priority task: Fix authentication bug"
astravue_update_taskUpdates task fields"Assign the API docs task to Sarah"
astravue_delete_taskDeletes a task"Delete the duplicate checkout task"
astravue_move_taskMoves a task from one project to another"Move the login task from Sprint 1 to Sprint 2"
astravue_duplicate_taskCreates a copy of an existing task"Duplicate the API integration task with all subtasks"
astravue_create_personal_taskCreates a personal task not tied to any project"Remind me to review the design doc by Friday"
astravue_bulk_create_tasksCreates multiple tasks in one call"Create these 10 sprint tasks with owners and priorities"
astravue_bulk_update_tasksUpdates multiple tasks at once"Set all 5 sprint tasks to In-Progress"
astravue_bulk_delete_tasksDeletes multiple tasks at once"Delete all the duplicate tasks from Sprint 1"
astravue_get_task_countsReturns task count summary: total, pending, completed, overdue"How many tasks are open vs completed?"
Subtasks (4 tools)
ToolDescriptionExample Prompt
astravue_list_subtasksLists subtasks under a parent task"Show the subtasks of the authentication feature"
astravue_create_subtaskCreates a new subtask"Add a subtask: Write unit tests under the API task"
astravue_update_subtaskUpdates a subtask's title, status, or priority"Mark the unit tests subtask as done"
astravue_delete_subtaskDeletes a subtask"Delete the duplicate subtask under the API task"
Comments (4 tools)
ToolDescriptionExample Prompt
astravue_get_task_commentsLists comments on a task"Show me all comments on the login bug task"
astravue_add_task_commentAdds a comment to a task"Comment on the API task: Blocked pending design review"
astravue_update_task_commentEdits an existing comment"Update my comment to say: Unblocked, ready for review"
astravue_delete_task_commentDeletes a specific comment"Delete my last comment on the API task"
Checklists (4 tools)
ToolDescriptionExample Prompt
astravue_get_task_checklistsGets all checklist items on a task"Show the checklist on the deployment task"
astravue_create_checklist_itemAdds a new checklist item"Add a checklist item: Run integration tests"
astravue_update_checklist_itemUpdates a checklist item's title or completion state"Mark 'Run integration tests' as done"
astravue_delete_checklist_itemDeletes a checklist item"Remove the 'Update changelog' item from the checklist"
Dependencies (3 tools)
ToolDescriptionExample Prompt
astravue_add_dependencyLinks two tasks with a blocking relationship"Database schema must complete before API implementation"
astravue_list_dependenciesShows all dependencies for a task"What does the API implementation task depend on?"
astravue_remove_dependencyRemoves a dependency link"Remove the dependency between design and implementation"
Tags (3 tools)
ToolDescriptionExample Prompt
astravue_list_tagsLists all tags available in your organization"What tags do we have?"
astravue_add_tag_to_taskAdds an existing tag to a task"Tag the login task as 'urgent'"
astravue_remove_tag_from_taskRemoves a tag from a task"Remove the 'blocked' tag from the deployment task"
Attachments (2 tools)
ToolDescriptionExample Prompt
astravue_list_attachmentsLists all attachments on a task"What files are attached to the design task?"
astravue_delete_attachmentDeletes an attachment from a task"Remove the old mockup file from the design task"
Time Tracking (10 tools)
ToolDescriptionExample Prompt
astravue_start_timerStarts a timer on a task"Start tracking time on the API documentation task"
astravue_stop_timerStops the active timer"Stop my timer"
astravue_get_active_timersLists running timers"Do I have any active timers?"
astravue_log_manual_timeLogs a time entry with a specific duration"Log 2 hours on the API documentation task"
astravue_log_time_rangeLogs time with a start and end time"Log time from 9am to 11:30am on the backend refactor"
astravue_get_task_time_entriesLists time entries for a task"How much time was logged on the backend refactor?"
astravue_get_project_time_entriesLists all time entries across a project"Show all time logged in Sprint 2"
astravue_get_project_time_summaryGets billable vs non-billable time totals"How many total hours were spent on the Backend project?"
astravue_get_timesheet_reportGenerates a timesheet report"Show my timesheet for this week"
astravue_delete_time_entryDeletes a time entry"Delete the accidental time entry from yesterday"
Custom Fields (7 tools)
ToolDescriptionExample Prompt
astravue_get_custom_fieldsLists all custom fields for a project"What custom fields are on the Backend project?"
astravue_create_custom_fieldCreates a new custom field"Add a custom field called Story Points to Sprint 2"
astravue_set_custom_field_valueSets a custom field value on a task"Set Story Points to 5 on the login task"
astravue_create_custom_field_optionAdds a dropdown option to a custom field"Add option 'Critical' to the Severity field"
astravue_list_custom_field_optionsLists all options for a dropdown field"What options are available for the Priority field?"
astravue_delete_custom_fieldDeletes a custom field from a project"Remove the Story Points field from Sprint 1"
astravue_delete_custom_field_optionDeletes a specific option from a dropdown field"Remove the 'Trivial' option from the Severity field"
Task Statuses (5 tools)
ToolDescriptionExample Prompt
astravue_list_task_statusesLists all available statuses for tasks"What statuses are available in Sprint 2?"
astravue_list_project_statusesLists status groups configured for a project"Show the status workflow for the Backend project"
astravue_create_task_statusCreates a new task status"Add a status called 'In Review' to Sprint 2"
astravue_update_task_statusUpdates a task status name or configuration"Rename 'In Progress' to 'Working'"
astravue_delete_task_statusDeletes a task status from a project"Remove the 'Blocked' status from Sprint 1"
Filters (4 tools)
ToolDescriptionExample Prompt
astravue_list_filtersLists saved filters"Show me my saved filters"
astravue_create_filterCreates a saved filter"Create a filter for all high priority tasks assigned to me"
astravue_update_filterUpdates a saved filter"Update my overdue filter to include medium priority"
astravue_delete_filterDeletes a saved filter"Delete the old sprint filter"
Scheduled & Overdue Tasks (2 tools)
ToolDescriptionExample Prompt
astravue_list_overdue_tasksLists overdue tasks assigned to the current user"Show me everything overdue"
astravue_list_scheduled_tasksLists upcoming tasks with due dates"What tasks are due this week?"
Notifications (2 tools)
ToolDescriptionExample Prompt
astravue_list_notificationsLists unread notifications"What notifications do I have?"
astravue_mark_notification_readMarks notifications as read"Mark all my notifications as read"
Workspace & Members (3 tools)
ToolDescriptionExample Prompt
astravue_get_workspace_membersLists workspace members"Who are the members of my workspace?"
astravue_get_member_by_emailFinds a member by email"Find the profile for sarah@company.com"
astravue_get_current_userReturns the authenticated user's profile"Who am I logged in as?"
Interactive Views (3 tools)
ToolDescriptionExample Prompt
astravue_preview_task_listOpens an interactive task list view for a project"Show me the task board for Sprint 2"
astravue_preview_my_tasksOpens a view of all tasks assigned to the current user"Show me my tasks"
astravue_preview_project_overviewOpens a project overview with completion, health, and attention items"Give me an overview of the Backend project"

Available Prompts

The Astravue MCP Server provides 15 prompts — pre-built workflows that guide your AI assistant through common project management tasks.

PromptDescriptionArguments
daily_standupGenerate a structured daily standup update for the current user based on their tasks
project_status_reportGenerate a professional project status report tailored for executive, stakeholder, or team audience
weekly_team_digestGenerate a weekly digest summarising what shipped, what is at risk, and what is coming up
task_breakdownSuggest a subtask decomposition for a complex task to make it actionable
overdue_action_planGenerate a prioritised recovery plan for the current user's overdue tasks
sprint_plannerPlan a sprint: select tasks by priority, estimate workload, assign owners, and define the sprint goalsprintGoal (required)
risk_assessmentIdentify at-risk projects and tasks: overdue items, off-track projects, unassigned high-priority work, and deadline conflicts
time_tracking_reportGenerate a time tracking and effort summary for the current user across tasks
meeting_agenda_generatorGenerate a structured meeting agenda based on current tasks, blockers, and project statusmeetingType (optional): standup, sprint_review, planning, retrospective, stakeholder_update
retrospective_summaryGenerate a sprint or project retrospective: what went well, what did not, and action items
capacity_planningAnalyse current team workload: identify who is overloaded, who has bandwidth, and suggest task redistribution
project_kickoffGenerate a project kickoff checklist with role assignments, initial tasks, and success criteria
blockers_escalationIdentify critical blockers and draft escalation messages for items requiring management attention
milestone_reviewReview progress toward project milestones: completed work, at-risk items, and recommended adjustments
team_workload_balancerShow each team member's task load and suggest reassignments to balance workload evenly

Available Resources

The Astravue MCP Server provides 6 resources — context data that AI assistants can attach to conversations for richer, more accurate responses.

Static Resources

Resource URINameDescription
astravue://user/meCurrent User ProfileThe authenticated user's profile: ID, name, email, and organisation role. Read at session start to establish user context before assigning tasks or personalising any response.
astravue://org/membersOrganisation MembersAll active members of the organisation with user IDs, names, emails, and roles. Use to resolve teammate names to numeric IDs before any task assignment operation.
astravue://org/spacesOrganisation SpacesAll spaces the current user is a member of. Use to discover space IDs before calling project or task tools.
astravue://dashboard/overviewDashboard OverviewCurrent user's task count summary: total, pending, completed, and overdue. Use for a quick org health snapshot.

Resource Templates

Template URINameDescription
astravue://spaces/{spaceId}/projectsProjects in SpaceAll projects within a given space. Replace {spaceId} with the numeric space ID.
astravue://spaces/{spaceId}/projects/{projectId}/overviewProject OverviewFull details of a specific project. Replace {spaceId} and {projectId} with numeric IDs.

Skills

This repository includes ready-to-use skills that automate common project management workflows:

SkillDescription
Sprint PlanningAnalyzes backlog, overdue tasks, and dependencies to build a prioritized sprint plan
Status ReportGenerates executive project status reports covering progress, budget, and risks
Time TrackingGuides timer usage, manual time logging, and timesheet report generation
Custom FieldsCreates, configures, and manages custom fields and dropdown options
Breaking Down WorkDecomposes a goal, feature, or epic into a structured task tree with dependencies
Capturing Meeting ActionsExtracts action items from meeting notes or transcripts and creates owned, dated tasks
Mapping DependenciesMaps task dependencies, finds the critical path, and detects circular dependencies
Triaging Overdue WorkReviews overdue and at-risk tasks and proposes reschedule, reassign, or close actions

Skills are available automatically when using the Claude Code or Cursor plugin.


Data and Security

  • All traffic is encrypted via HTTPS using TLS 1.2 or later.
  • OAuth 2.0 authentication ensures secure access control.
  • Data access respects your workspace role and project-level permissions.
  • The MCP server never stores credentials — authentication is handled per session.

For more details, see SECURITY.md.


Rate Limits

Astravue MCP enforces rate limits to ensure platform stability.

Requests per user per minute100
Bulk task create limit100 tasks per call

If the limit is exceeded, the server returns HTTP 429 Too Many Requests. Wait 60 seconds before retrying.


Troubleshooting

Authentication fails or browser does not open

Sign out of Astravue at app.astravue.com, sign back in, then reconnect your AI client.

401 Unauthorized error

Your OAuth session expired. Reconnect your client to trigger a new sign-in flow.

Tools not appearing in my AI client

Ensure your client supports Streamable HTTP transport. Clients that only support SSE must use the mcp-remote bridge (see Other MCP Clients).

Connection drops after some time

OAuth tokens expire periodically. Your client should refresh automatically. If it does not, reconnect once.


FAQ

Do I need a paid Astravue plan?

No. Astravue MCP works on all plans including free.

Can multiple team members connect their AI clients?

Yes. Each user authenticates with their own Astravue account.

What permissions does Astravue MCP have?

Astravue MCP only has access to resources your account already has permission to access. All actions are performed as your authenticated user.

Can I use an API key instead of OAuth?

No. OAuth 2.0 is required so every action is tied to an authenticated user.

Will the AI make changes without asking me?

Most AI clients ask for confirmation before executing write operations. Check your client's tool approval settings.


Contributing

We welcome contributions. See CONTRIBUTING.md for guidelines.

Code of Conduct

This project follows the Contributor Covenant.

License

This project is licensed under the Apache License 2.0.

Copyright 2026 Astravue.


Support