Skip to main content
Glama

Algorand MCP

by GoPlausible
index.ts1.8 kB
import { McpError, ErrorCode } from '@modelcontextprotocol/sdk/types.js'; import { walletResources } from './wallet/index.js'; import { knowledgeResources } from './knowledge/index.js'; // Resource handler type type ResourceHandler = (uri: string) => Promise<{ contents: Array<{ uri: string; mimeType: string; text: string; }>; }>; // Resource module interface interface ResourceModule { canHandle: (uri: string) => boolean; handle: ResourceHandler; getResourceDefinitions: () => Array<{ uri: string; name: string; description: string; schema?: any; }>; } // Resource modules registry const resourceModules: ResourceModule[] = [ walletResources, knowledgeResources ]; export class ResourceManager { // Get all resource definitions from all modules static get resources() { return resourceModules.flatMap(module => module.getResourceDefinitions()); } // Get schemas for all resources static get schemas() { return this.resources.reduce((acc, resource) => ({ ...acc, [resource.uri]: resource.schema }), {} as Record<string, any>); } // Handle resource request static async handleResource(uri: string) { // Find module that can handle this URI const module = resourceModules.find(m => m.canHandle(uri)); if (!module) { throw new McpError( ErrorCode.InvalidRequest, `No module found to handle resource: ${uri}` ); } try { return await module.handle(uri); } catch (error: unknown) { if (error instanceof McpError) { throw error; } const message = error instanceof Error ? error.message : 'Unknown error'; throw new McpError( ErrorCode.InternalError, `Failed to handle resource: ${message}` ); } } }

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/GoPlausible/algorand-mcp'

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