Skip to main content
Glama

api_list

List all configured APIs in the MCP SFTP Orchestrator catalogue to monitor API health and manage remote server connections.

Instructions

Affiche toutes les APIs configurées dans le catalogue.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • server.js:149-160 (registration)
    Full registration of the 'api_list' MCP tool, including schema (empty input), description, and handler that delegates to apis.listApis() and formats as JSON response.
    server.registerTool( "api_list", { title: "Lister les APIs du catalogue", description: "Affiche toutes les APIs configurées dans le catalogue.", inputSchema: z.object({}) }, async () => { const apiList = await apis.listApis(); return { content: [{ type: "text", text: JSON.stringify(apiList, null, 2) }] }; } );
  • apis.js:70-74 (helper)
    Core implementation of listApis(): ensures APIs are loaded/initialized and returns the apis object containing all configured APIs.
    // Lister toutes les APIs async function listApis() { await ensureInitialized(); return apis; }

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/fkom13/mcp-sftp-orchestrator'

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