Solana MCP Server

by akc2267
Verified
  • src
export interface MCPRequest { method: string; params?: Record<string, any>; } export interface MCPResponse { success: boolean; data?: any; error?: string; } export type MCPHandler = (params: any) => Promise<MCPResponse>;