We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Dsazz/mcp-jira'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
formatter.interface.ts•256 B
/**
* Base formatter interface with default string return type
*/
export interface Formatter<T, R = string> {
format(input: T): R;
}
/**
* Type alias for string formatters (most common case)
*/
export type StringFormatter<T> = Formatter<T, string>;