Skip to main content
Glama

Postman MCP Generator

by Ucode-io
tools.js426 B
import { toolPaths } from "../tools/paths.js"; /** * Discovers and loads available tools from the tools directory * @returns {Promise<Array>} Array of tool objects */ export async function discoverTools() { const toolPromises = toolPaths.map(async (file) => { const module = await import(`../tools/${file}`); return { ...module.apiTool, path: file, }; }); return Promise.all(toolPromises); }

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/Ucode-io/mcp-server'

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