Skip to main content
Glama

list_integrations

Discover and view all available integrations on the PulseMCP Server with this tool, enabling efficient management and utilization of connected resources.

Instructions

List all available integrations

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Handler implementation for the 'list_integrations' tool. It makes an API call to '/integrations' and returns the JSON response or an error message.
    case "list_integrations": { try { const response = await this.axiosInstance.get<ListIntegrationsResponse>( "/integrations" ); return { content: [ { type: "text", text: JSON.stringify(response.data, null, 2), }, ], }; } catch (error) { if (axios.isAxiosError(error)) { return { content: [ { type: "text", text: `API Error: ${ error.response?.data?.error?.message ?? error.message }`, }, ], isError: true, }; } throw error; } }
  • TypeScript interface defining the structure of the response from the list_integrations API call.
    interface ListIntegrationsResponse { integrations: Array<{ name: string; slug: string; url: string; }>; }
  • src/index.ts:126-133 (registration)
    Registration of the 'list_integrations' tool in the listTools handler, specifying name, description, and empty input schema.
    { name: "list_integrations", description: "List all available integrations", inputSchema: { type: "object", properties: {}, }, },

Other Tools

Related Tools

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/orliesaurus/pulsemcp-server'

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