Connect your AI client to Astravue MCP and start managing projects, tasks, and teams directly from natural language conversations.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.
AI Clients#
Claude Code#
1
Add Astravue MCP
Run the following command in your terminal:
claude mcp add --transport http astravue-mcp https://api.astravue.com/mcp
2
Sign in to Astravue
Your browser will open automatically.
Sign in with your Astravue account and click Approve.
3
Confirm the connection
In a new Claude Code session, run:
You should see astravue-mcp listed with a green connected status.Add the
--scope project flag to create a
.mcp.json file in your project root.
claude mcp add --transport http --scope project astravue-mcp 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
Open Connectors
Go to Settings → Connectors in Claude Desktop.
2
Add a custom connector
Click
Add custom connector and enter:
https://api.astravue.com/mcp
3
Sign in to Astravue
Your browser will open.
Sign in with your Astravue account and click Approve.
If Connectors is not available in your Claude Desktop version, edit:
~/Library/Application Support/Claude/claude_desktop_config.json
%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.
2
Add Astravue MCP
Click
Add connector and enter:
https://api.astravue.com/mcp
3
Sign in to Astravue
Your browser will open a new tab.
Sign in with your Astravue account 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.
Developer IDE Clients#
Cursor#
1
Open MCP settings
Go to Cursor Settings → Tools & MCP
2
Add Astravue MCP
Click
New MCP Server — this opens your
mcp.json file
{
"mcpServers": {
"astravue-mcp": {
"url": "https://api.astravue.com/mcp"
}
}
}
3
Sign in to Astravue
Your browser will open automatically. Sign in with your Astravue account and click Approve.
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
Create config file
Add a
.vscode/mcp.json file to your project root.
{
"servers": {
"astravue-mcp": {
"type": "http",
"url": "https://api.astravue.com/mcp"
}
}
}
2
Start the server
Open Command Palette:
Cmd + Shift + P (macOS)
Ctrl + Shift + P (Windows)Click Start next to astravue-mcp.3
Sign in to Astravue
Authenticate with your Astravue account in the browser.
Add this to
User Settings (JSON).
{
"mcp": {
"servers": {
"astravue-mcp": {
"type": "http",
"url": "https://api.astravue.com/mcp"
}
}
}
}
Windsurf#
1
Open MCP settings
Open the Windsurf MCP config file:~/.codeium/mcp_config.jsonC:\Users\[username]\.codeium\mcp_config.jsonOr go to New MCP plugins can be added by going to the Settings > Tools > Windsurf Settings > Add Server section.If you cannot find your desired MCP plugin, you can add it manually by clicking View Raw Config button and editing the raw mcp_config.json file.When you click on an MCP server, simply click + Add Server to expose the server and its tools to Cascade.
2
Add Astravue
Add the following to your config file:.
{
"mcpServers": {
"astravue-mcp": {
"serverUrl": "https://api.astravue.com/mcp"
}
}
}
Note: 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.
3
Sign in to Astravue
Reload Windsurf and authenticate with your Astravue account.
Cline#
1
Open MCP Servers
Click the Cline icon in the VS Code sidebar → Click the menu (⋮) in the top right → Select MCP Servers.
2
Add Astravue MCP
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
Sign in to Astravue
Your browser will open for OAuth authentication.
Sign in with your Astravue account and click Approve.
Click
Configure MCP Servers in the Configure tab to open the JSON file and add:
{
"mcpServers": {
"astravue-mcp": {
"url": "https://api.astravue.com/mcp",
"type": "streamableHttp"
}
}
}
Jetbrains(IntelliJ, WebStorm, PyCharm, etc.)#
1
Open MCP settings
Go to Settings → Tools → AI Assistant → Model Context Protocol (MCP)
2
Add Astravue MCP
Click
Add → Select
Streamable HTTP → Paste the following:
{
"mcpServers": {
"astravue-mcp": {
"url": "https://api.astravue.com/mcp"
}
}
}
3
Sign in to Astravue
Your browser will open. Sign in with your Astravue account and click Approve.
GitHub Copilot CLI#
Add to your Copilot CLI MCP configuration at ~/.copilot/mcp-config.json:{
"mcpServers": {
"astravue-mcp": {
"type": "http",
"url": "https://api.astravue.com/mcp"
}
}
}
Chat Clients#
Mistral Le Chat(coming soon)#
2
Add custom connector
Click Add connector and enter:https://api.astravue.com/mcp
3
Sign in to Astravue
Authenticate with your Astravue account in the browser.
Mistral Le Chat MCP connector support may vary. Check Mistral's documentation for the latest availability.
ChatGPT(coming soon)#
Requires ChatGPT Pro, Plus, Business, Enterprise, or Education.
ChatGPT requires Dynamic Client Registration (DCR) which is planned for a future Astravue MCP update.
Other MCP Clients#
For any client that supports Streamable HTTP + OAuth 2.0If 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.
Try it#
Once connected, try asking your AI assistant:Create a project called Sprint Planning in the Engineering space
Show me all overdue tasks
Assign the login bug to Sarah and set it to high priority
Start tracking time on the API documentation task
Troubleshooting#
Sign out of Astravue at app.astravue.com, sign back in, then reconnect your AI client.
Remove the Astravue connection from your client and add it again.
Your OAuth session expired. Reconnect your client to trigger a new sign-in flow.
Ensure your client supports Streamable HTTP transport.
Clients that only support SSE must use the mcp-remote bridge.
OAuth tokens expire periodically. Your client should refresh automatically.
If it does not, reconnect once.
FAQ#
No. Astravue MCP works on all plans including free.
Yes. Each user authenticates with their own Astravue account.
Astravue MCP only has access to resources your account already has permission to access.
All actions are performed as your authenticated user.
No. OAuth 2.0 is required so every action is tied to an authenticated user.
Most AI clients ask for confirmation before executing write operations.
Check your client's tool approval settings.