Skip to main content
Glama

meta_get_app_info

Retrieve basic information about Meta applications, including name, category, and namespace details.

Instructions

Get Meta App basic information (name, category, namespace, etc.).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The tool `meta_get_app_info` is registered and implemented within `registerMetaAuthTools` in `src/tools/meta/auth.ts`. It makes a GET request to the `/app` endpoint via the Meta client to retrieve application information.
    // ─── meta_get_app_info ───────────────────────────────────────
    server.tool(
      "meta_get_app_info",
      "Get Meta App basic information (name, category, namespace, etc.).",
      {},
      async () => {
        try {
          const { data, rateLimit } = await client.meta("GET", `/app`, {
            fields: "id,name,category,namespace,link,company,description",
          });
          return { content: [{ type: "text", text: JSON.stringify({ ...data as object, _rateLimit: rateLimit }, null, 2) }] };
        } catch (error) {
          return { content: [{ type: "text", text: `Get app info failed: ${error instanceof Error ? error.message : String(error)}` }], 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/mikusnuz/meta-mcp'

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