Skip to main content
Glama
index.ts907 B
/** * MCP Tools Index * Exports all tool definitions and handlers */ import { ToolDefinition } from '../types'; import { workflowTools, workflowToolHandlers } from './workflow-tools'; import { executionTools, executionToolHandlers } from './execution-tools'; import { documentationTools, documentationToolHandlers } from './documentation-tools'; // Combine all tool definitions export const allTools: ToolDefinition[] = [ ...documentationTools, // Documentation first for discoverability ...workflowTools, ...executionTools, ]; // Re-export handlers export { workflowToolHandlers } from './workflow-tools'; export { executionToolHandlers } from './execution-tools'; export { documentationToolHandlers } from './documentation-tools'; // Combined handlers type export type AllToolHandlers = typeof workflowToolHandlers & typeof executionToolHandlers & typeof documentationToolHandlers;

Latest Blog Posts

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/alicankiraz1/cursor-n8n-builder'

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