We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/edicarloslds/businessmap-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
custom-field-client.ts•458 B
import { ApiResponse, CustomField } from '../../types/index.js';
import { BaseClientModuleImpl } from './base-client.js';
export class CustomFieldClient extends BaseClientModuleImpl {
/**
* Get a specific custom field by ID
*/
async getCustomField(customFieldId: number): Promise<CustomField> {
const response = await this.http.get<ApiResponse<CustomField>>(
`/custom_fields/${customFieldId}`
);
return response.data.data;
}
}