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
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:186-217 (handler)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; } }
- src/index.ts:43-49 (schema)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: {}, }, },