Skip to main content
Glama

api_list

List all configured APIs in the MCP SFTP Orchestrator catalog to monitor API health and manage integrations through a unified interface.

Instructions

Affiche toutes les APIs configurées dans le catalogue.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • server.js:149-160 (registration)
    Registration of the 'api_list' MCP tool, including input schema (empty object) and the inline handler function that calls apis.listApis() and returns the JSON stringified list.
    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) }] }; } );
  • Handler function for 'api_list' tool: fetches API list via apis.listApis() and formats as JSON response.
    async () => { const apiList = await apis.listApis(); return { content: [{ type: "text", text: JSON.stringify(apiList, null, 2) }] }; }
  • Tool metadata and input schema for 'api_list': no input parameters required.
    { title: "Lister les APIs du catalogue", description: "Affiche toutes les APIs configurées dans le catalogue.", inputSchema: z.object({})
  • apis.js:71-74 (helper)
    Helper function listApis() that loads and returns the APIs object from JSON file, used by the tool handler.
    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