Skip to main content
Glama

get_integration

Retrieve comprehensive integration details including service-specific fields and connection status for managing content pipeline connections on the Balzac AI platform.

Instructions

Get full details of an integration including service-specific fields and connection status.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
workspace_idYesWorkspace UUID
integration_idYesIntegration UUID

Implementation Reference

  • The handler logic for 'get_integration' which makes a GET request to retrieve integration details.
    async ({ workspace_id, integration_id }) => {
      const res = await client.get(`/workspaces/${workspace_id}/integrations/${integration_id}`);
      return { content: [{ type: 'text' as const, text: JSON.stringify(res.data) }] };
    }
  • Registration of the 'get_integration' tool and its input schema definition.
    server.tool(
      'get_integration',
      'Get full details of an integration including service-specific fields and connection status.',
      {
        workspace_id: z.string().describe('Workspace UUID'),
        integration_id: z.string().describe('Integration UUID'),
      },

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/hirebalzac/mcp'

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