We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/kelvis-santos/MCP-vscode-examples'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
entity.ts•272 B
// MCP Entity Pattern Example
// Exemplo fictício de Entity MCP (autocontido para apresentação)
export class User {
constructor(
public id: string,
public name: string,
public email: string,
public createdAt: Date,
public updatedAt: Date
) {}
}