Skip to main content
Glama

MCP-NOSTR

by pablof7z
types.ts506 B
/** * Database interface that matches our usage patterns with the promisified methods */ export interface Database { run(sql: string, params?: any[] | any): void; prepare(sql: string): Statement; transaction(fn: () => void): () => void; query(sql: string): { all(params?: any): any[]; get(params?: any): any; }; } /** * Statement interface for prepared statements */ export interface Statement { run(...params: any[]): void; finalize(): void; } /** * Bun type declarations */

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/pablof7z/mcp-code'

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