Skip to main content
Glama

mcp-neurolora

by aindreyway
index.ts766 B
import { Tool } from '@modelcontextprotocol/sdk/types.js'; import { handleInstallBaseServers } from './handler.js'; export const installBaseServersTool: Tool = { name: 'install_base_servers', description: 'Install base MCP servers to the configuration', inputSchema: { type: 'object', properties: { configPath: { type: 'string', description: 'Path to the MCP settings configuration file', }, }, required: ['configPath'], }, handler: async (args: Record<string, unknown>) => { const configPath = String(args.configPath); const result = await handleInstallBaseServers(configPath); return { content: [ { type: 'text', text: result, }, ], }; }, };

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/aindreyway/mcp-neurolora'

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