@coretext-ai/asana-mcp-server-sls-a1b2c3d4-e5f6-4789-a012-123456789012
v1.0.3
Published
MCP server with Asana integration
Readme
asana-mcp-server-sls
MCP server with Asana integration
This MCP server was generated using the Template Orchestrator and includes the following integrations:
Available Tools
This MCP server provides 27 tools across 1 integrations:
Asana Tools
- asana_get_current_user: Get the current authenticated user
- asana_get_users: Get multiple users in a workspace or team
- asana_get_workspaces: Get multiple workspaces accessible to the authenticated user
- asana_get_workspace: Get a workspace by ID
- asana_list_projects: Get multiple projects
- asana_create_project: Create a new project in a workspace or team
- asana_get_project: Get a project by ID
- asana_update_project: Update a project
- asana_delete_project: Delete a project
- asana_list_tasks: Get multiple tasks
- asana_create_task: Create a new task
- asana_get_task: Get a task by ID
- asana_update_task: Update a task
- asana_delete_task: Delete a task
- asana_add_task_to_project: Add a task to a project
- asana_set_task_dependencies: Set dependencies for a task
- asana_list_teams: Get teams in a workspace
- asana_get_team: Get a team by ID
- asana_list_portfolios: Get multiple portfolios
- asana_create_portfolio: Create a portfolio
- asana_get_portfolio: Get a portfolio by ID
- asana_add_portfolio_item: Add an item to a portfolio
- asana_get_custom_fields: Get a workspace's custom fields
- asana_create_custom_field: Create a custom field
- asana_create_attachment: Upload an attachment to a task
- asana_get_attachments: Get attachments for an object
- asana_search_tasks: Search tasks in a workspace
Installation
npm install @coretext-ai/asana-mcp-server-sls-a1b2c3d4-e5f6-4789-a012-123456789012Environment Setup
Create a .env file with the following variables:
ASANA_ACCESS_TOKEN=your_asana_access_token_hereUsage
Running the server
# Development mode
npm run dev
# Production mode
npm run build && npm startUsing with Claude Desktop
Add this to your Claude Desktop configuration:
{
"mcpServers": {
"asana-mcp-server-sls": {
"command": "npx",
"args": ["@coretext-ai/asana-mcp-server-sls-a1b2c3d4-e5f6-4789-a012-123456789012"],
"env": {
"ASANA_ACCESS_TOKEN": "your_asana_access_token_here"
}
}
}
}Instructions for Fetching API Keys/Tokens
- COMING SOON
Advanced Features
Request Cancellation
This MCP server supports request cancellation according to the MCP cancellation specification. Clients can cancel in-progress requests by sending a notifications/cancelled message with the request ID.
When a request is cancelled:
- The server immediately stops processing the request
- Any ongoing API calls are aborted
- Resources are cleaned up
- No response is sent for the cancelled request
Progress Notifications
The server supports progress notifications for long-running operations according to the MCP progress specification.
To receive progress updates:
- Include a
progressTokenin your request metadata - The server will send
notifications/progressmessages with:- Current progress value
- Total value (when known)
- Human-readable status messages
Progress is reported for:
- Multi-step operations
- Batch processing
- Long-running API calls
- File uploads/downloads
Example progress notification:
{
"method": "notifications/progress",
"params": {
"progressToken": "operation-123",
"progress": 45,
"total": 100,
"message": "Processing item 45 of 100..."
}
}Generated Information
- Generated at: Thu Sep 04 2025 15:27:56 GMT-0400 (Eastern Daylight Time)
- Orchestrator version: 0.0.2
- Template repository: Coretext-AI-Dev/server-template-v2
- Total endpoints: 27
