Skip to main content
Glama
agenticbits

@agenticbits/claude-plugin

by agenticbits

get_config_info

Retrieve the configuration file path and current settings for the Claude git repository monitoring plugin.

Instructions

Return the path to the config file and the full current configuration.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The handler implementation for the 'get_config_info' MCP tool, which returns the path to the config file and the full current configuration.
    // --- get_config_info ---
    server.tool(
      "get_config_info",
      "Return the path to the config file and the full current configuration.",
      {},
      async () => {
        const config = loadConfig();
        return {
          content: [
            { type: "text", text: `Config file: ${configPath()}\n\n${JSON.stringify(config, null, 2)}` },
          ],
        };
      }
    );
  • Registration of the 'get_config_info' tool within the registerConfigTools function.
    // --- get_config_info ---
    server.tool(
      "get_config_info",
      "Return the path to the config file and the full current configuration.",
      {},
      async () => {
        const config = loadConfig();
        return {
          content: [
            { type: "text", text: `Config file: ${configPath()}\n\n${JSON.stringify(config, null, 2)}` },
          ],
        };
      }
    );

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/agenticbits/claude-plugin'

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