Skip to main content
Glama

Basecamp MCP Server

by stefanoverna
serializers.ts765 B
/** * Serialization utilities for Basecamp API responses */ /** * Person object from Basecamp API */ interface BasecampPerson { id: number; name: string; attachable_sgid: string; } /** * Serialized person object for MCP responses */ export interface SerializedPerson { id: number; name: string; attachable_sgid: string; } /** * Serialize a Basecamp person object to a consistent format * @param person - The person object from Basecamp API * @returns Serialized person with id and name */ export function serializePerson( person: BasecampPerson | null | undefined, ): SerializedPerson | null { if (!person) { return null; } return { id: person.id, name: person.name, attachable_sgid: person.attachable_sgid, }; }

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/stefanoverna/basecamp-mcp'

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