Skip to main content
Glama

asana_get_project_status

Retrieve project status updates from Asana to monitor progress and track milestones using the MCP server for Asana operations.

Instructions

Get a project status update

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
project_status_gidYesThe project status GID to retrieve
opt_fieldsNoComma-separated list of optional fields to include

Implementation Reference

  • The dispatch handler for the 'asana_get_project_status' tool. It destructures the input arguments (project_status_gid and opts), calls the AsanaClientWrapper's getProjectStatus method, and returns the JSON-stringified response.
    case "asana_get_project_status": { const { project_status_gid, ...opts } = args; const response = await asanaClient.getProjectStatus(project_status_gid, opts); return { content: [{ type: "text", text: JSON.stringify(response) }], }; }
  • Tool definition including name, description, and input schema specifying required project_status_gid and optional opt_fields.
    export const getProjectStatusTool: Tool = { name: "asana_get_project_status", description: "Get a project status update", inputSchema: { type: "object", properties: { project_status_gid: { type: "string", description: "The project status GID to retrieve" }, opt_fields: { type: "string", description: "Comma-separated list of optional fields to include" } }, required: ["project_status_gid"] } };
  • Exports the list of available tools (list_of_tools), which includes the asana_get_project_status tool depending on read-only mode. The tool is included in all_tools and READ_ONLY_TOOLS.
    export const list_of_tools = isReadOnlyMode ? all_tools.filter(tool => READ_ONLY_TOOLS.includes(tool.name)) : all_tools;
  • Imports the getProjectStatusTool from project-status-tools.ts for registration in the tool handler.
    getProjectStatusTool, getProjectStatusesForProjectTool, createProjectStatusTool, deleteProjectStatusTool } from './tools/project-status-tools.js';
  • Helper method in AsanaClientWrapper that wraps the Asana SDK call to retrieve project status by GID.
    async getProjectStatus(statusId: string, opts: any = {}) { const response = await this.projectStatuses.getProjectStatus(statusId, opts); return response.data; }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/roychri/mcp-server-asana'

If you have feedback or need assistance with the MCP directory API, please join our Discord server