Skip to main content
Glama
jhliberty

Basecamp MCP Server

by jhliberty

get_project

Retrieve detailed information for a specific project by providing its unique project ID using the Basecamp MCP Server. Streamline project management through API integration with Basecamp 3.

Instructions

Get details for a specific project

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
project_idYesThe project ID

Implementation Reference

  • MCP tool handler for get_project: extracts project_id from args, calls BasecampClient.getProject(), formats result as JSON text content.
    case 'get_project': {
      const project = await client.getProject(typedArgs.project_id);
      return {
        content: [{
          type: 'text',
          text: JSON.stringify({
            status: 'success',
            project
          }, null, 2)
        }]
      };
    }
  • src/index.ts:116-126 (registration)
    Tool registration in ListTools handler, including name, description, and input schema requiring project_id.
    {
      name: 'get_project',
      description: 'Get details for a specific project',
      inputSchema: {
        type: 'object',
        properties: {
          project_id: { type: 'string', description: 'The project ID' },
        },
        required: ['project_id'],
      },
    },
  • BasecampClient method implementing the API call to fetch a specific project by ID.
    async getProject(projectId: string): Promise<BasecampProject> {
      const response = await this.client.get(`/projects/${projectId}.json`);
      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/jhliberty/basecamp-mcp-server'

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