Skip to main content
Glama

get_integration_setup

Retrieve current webhook return URL and integration name settings for social media analytics across multiple platforms.

Instructions

Get the current integration settings (webhook return URL and integration name).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The handler function for get_integration_setup.
    async () => {
      try {
        const data = await apiGet("/setup");
        return { content: [{ type: "text", text: JSON.stringify(data, null, 2) }] };
      } catch (e) {
        return { content: [{ type: "text", text: String(e) }], isError: true };
      }
    }
  • Registration of the get_integration_setup tool.
    server.tool(
      "get_integration_setup",
      "Get the current integration settings (webhook return URL and integration name).",
      {},
      async () => {
        try {
          const data = await apiGet("/setup");
          return { content: [{ type: "text", text: JSON.stringify(data, null, 2) }] };
        } catch (e) {
          return { content: [{ type: "text", text: String(e) }], isError: true };
        }
      }
    );

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/rolliinc/rolli-mcp'

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