Skip to main content
Glama

list_integrations

View available integrations to connect with the PulseMCP Server's note management system for creating, accessing, and summarizing text notes.

Instructions

List all available integrations

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Handler for the 'list_integrations' tool: fetches integrations from '/integrations' API endpoint using axios, returns JSON stringified response or error.
    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 response structure for list_integrations API call.
    interface ListIntegrationsResponse { integrations: Array<{ name: string; slug: string; url: string; }>; }
  • src/index.ts:126-133 (registration)
    Tool registration in ListToolsRequestHandler: defines name, description, and empty input schema for list_integrations.
    { name: "list_integrations", description: "List all available integrations", inputSchema: { type: "object", properties: {}, }, },
Install Server

Other 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