Skip to main content
Glama
jhliberty

Basecamp MCP Server

by jhliberty

create_column

Add a new column to a card table in Basecamp by specifying the project ID, card table ID, and column title. Simplify project organization and task management directly through API integration.

Instructions

Create a new column in a card table

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
card_table_idYesThe card table ID
project_idYesThe project ID
titleYesThe column title

Implementation Reference

  • MCP tool handler for 'create_column' that calls BasecampClient.createColumn and formats the response.
    case 'create_column': {
      const column = await client.createColumn(typedArgs.project_id, typedArgs.card_table_id, typedArgs.title);
      return {
        content: [{
          type: 'text',
          text: JSON.stringify({
            status: 'success',
            column,
            message: `Column '${typedArgs.title}' created successfully`
          }, null, 2)
        }]
      };
    }
  • src/index.ts:231-242 (registration)
    Registration of the 'create_column' tool including its input schema.
      name: 'create_column',
      description: 'Create a new column in a card table',
      inputSchema: {
        type: 'object',
        properties: {
          project_id: { type: 'string', description: 'The project ID' },
          card_table_id: { type: 'string', description: 'The card table ID' },
          title: { type: 'string', description: 'The column title' },
        },
        required: ['project_id', 'card_table_id', 'title'],
      },
    },
  • Implementation of createColumn method in BasecampClient that makes the API call to create a column.
    async createColumn(projectId: string, cardTableId: string, title: string): Promise<Column> {
      const response = await this.client.post(`/buckets/${projectId}/card_tables/${cardTableId}/columns.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