Skip to main content
Glama
by sinch
types.ts742 B
// MCP types interface TextResponseContent { [x: string]: unknown; type: 'text'; text: string; } export interface IPromptResponse { [x: string]: unknown; content: TextResponseContent[]; } export class PromptResponse { constructor(content: string) { this.promptResponse = { role: 'assistant', content: [ { type: 'text', text: content, } ] }; } promptResponse: IPromptResponse; } // Tags to categorize tools export type Tags = 'all' | 'conversation' | 'verification' | 'voice' | 'email' | 'notification' | string; export interface ToolsConfig { name: string; tags: Tags[]; }

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/sinch/sinch-mcp-server'

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