Skip to main content
Glama
jhliberty

Basecamp MCP Server

by jhliberty

update_column

Modify the title of a specific column within a Basecamp project by specifying the project ID, column ID, and the new title to ensure accurate project organization.

Instructions

Update a column title

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
column_idYesThe column ID
project_idYesThe project ID
titleYesThe new column title

Implementation Reference

  • src/index.ts:243-255 (registration)
    Registration of the 'update_column' tool in the MCP server, defining its name, description, and input schema.
    {
      name: 'update_column',
      description: 'Update a column title',
      inputSchema: {
        type: 'object',
        properties: {
          project_id: { type: 'string', description: 'The project ID' },
          column_id: { type: 'string', description: 'The column ID' },
          title: { type: 'string', description: 'The new column title' },
        },
        required: ['project_id', 'column_id', 'title'],
      },
    },
  • The handler function in BasecampClient that executes the column update by making a PUT request to the Basecamp API.
    async updateColumn(projectId: string, columnId: string, title: string): Promise<Column> {
      const response = await this.client.put(`/buckets/${projectId}/card_tables/columns/${columnId}.json`, {
        title,
      });
      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