get-project
Retrieve detailed project information from Plane.so using the project ID to access specific project data and manage project workflows.
Instructions
Get detailed information about a specific project
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | ID of the project to retrieve |
Implementation Reference
- src/index.ts:290-300 (handler)Handler logic for the 'get-project' tool: validates project_id input, calls Plane API to fetch project details, and returns JSON response.case "get-project": { if (!args || typeof args.project_id !== "string") { throw new Error("Project ID is required"); } const { project_id } = args; const project = await callPlaneAPI(`/projects/${project_id}/`, "GET"); return { content: [{ type: "text", text: JSON.stringify(project, null, 2) }], isError: false, }; }
- src/index.ts:40-53 (schema)Tool schema definition for 'get-project', specifying name, description, and input schema requiring 'project_id'.const GET_PROJECT_TOOL: Tool = { name: "get-project", description: "Get detailed information about a specific project", inputSchema: { type: "object", properties: { project_id: { type: "string", description: "ID of the project to retrieve", }, }, required: ["project_id"], }, };
- src/index.ts:261-270 (registration)Registration of the 'get-project' tool (as GET_PROJECT_TOOL) in the ListToolsRequestSchema handler, making it discoverable by clients.server.setRequestHandler(ListToolsRequestSchema, async () => ({ tools: [ LIST_PROJECTS_TOOL, GET_PROJECT_TOOL, CREATE_ISSUE_TOOL, LIST_ISSUES_TOOL, GET_ISSUE_TOOL, UPDATE_ISSUE_TOOL, ], }));