Skip to main content
Glama

Server Details

MCP server for 200+ developer utilities — discover and execute tools through a unified API.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Unhealthy
Last Tested
Transport
Streamable HTTP
URL

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 3 tool updates
    • Changedexecute_tool1 field changed
      • changedOutput schema / (root)
        Previous value: -nullNew value: +{
        +  "properties": {
        +    "data": {
        +      "additionalProperties": false,
        +      "description": "Tool output data, present on success",
        +      "properties": {
        +        "input": {
        +          "description": "Original input provided to the tool",
        +          "type": "string"
        +        },
        +        "result": {
        +          "description": "Processed output from the tool; null for client-side tools",
        +          "type": [
        +            "string",
        +            "array",
        +            "null"
        +          ]
        +        }
        +      },
        +      "type": [
        +        "object",
        +        "null"
        +      ]
        +    },
        +    "message": {
        +      "description": "Error message when success is false",
        +      "type": [
        +        "string",
        +        "null"
        +      ]
        +    },
        +    "meta": {
        +      "additionalProperties": false,
        +      "description": "Tool metadata, present on success",
        +      "properties": {
        +        "note": {
        +          "description": "Present on client-side tools: indicates processing must be done in the browser",
        +          "type": [
        +            "string",
        +            "null"
        +          ]
        +        },
        +        "tier": {
        +          "description": "free or premium",
        +          "type": "string"
        +        },
        +        "tool": {
        +          "description": "Tool slug",
        +          "type": "string"
        +        }
        +      },
        +      "type": [
        +        "object",
        +        "null"
        +      ]
        +    },
        +    "status": {
        +      "description": "HTTP status code (200 on success, 422 on validation error)",
        +      "type": "integer"
        +    },
        +    "success": {
        +      "description": "Whether the tool executed successfully",
        +      "type": "boolean"
        +    }
        +  },
        +  "type": "object"
        +}
    • Changedget_tool_details1 field changed
      • changedOutput schema / (root)
        Previous value: -nullNew value: +{
        +  "properties": {
        +    "message": {
        +      "description": "Error message if the tool was not found",
        +      "type": [
        +        "string",
        +        "null"
        +      ]
        +    },
        +    "success": {
        +      "description": "Whether the tool was found",
        +      "type": "boolean"
        +    },
        +    "tool": {
        +      "additionalProperties": false,
        +      "description": "The tool definition, if found",
        +      "properties": {
        +        "category": {
        +          "description": "Category slug the tool belongs to",
        +          "type": "string"
        +        },
        +        "description": {
        +          "description": "One-line tool description",
        +          "type": "string"
        +        },
        +        "endpoint": {
        +          "properties": {
        +            "method": {
        +              "description": "HTTP method",
        +              "type": "string"
        +            },
        +            "path": {
        +              "description": "API endpoint path",
        +              "type": "string"
        +            }
        +          },
        +          "type": "object"
        +        },
        +        "icon": {
        +          "description": "Heroicon name",
        +          "type": [
        +            "string",
        +            "null"
        +          ]
        +        },
        +        "input_type": {
        +          "description": "textarea, file, code, or mixed",
        +          "type": "string"
        +        },
        +        "keywords": {
        +          "description": "Search keywords",
        +          "items": {
        +            "type": "string"
        +          },
        +          "type": "array"
        +        },
        +        "name": {
        +          "description": "Human-readable tool name",
        +          "type": "string"
        +        },
        +        "rate_limit": {
        +          "properties": {
        +            "anonymous": {
        +              "description": "Rate limit for unauthenticated users",
        +              "type": "integer"
        +            },
        +            "free": {
        +              "description": "Rate limit for free registered users",
        +              "type": "integer"
        +            },
        +            "premium": {
        +              "description": "Rate limit for premium subscribers",
        +              "type": "integer"
        +            }
        +          },
        +          "type": "object"
        +        },
        +        "request": {
        +          "properties": {
        +            "content_type": {
        +              "description": "Request content type",
        +              "type": "string"
        +            },
        +            "fields": {
        +              "description": "Request field definitions",
        +              "type": "object"
        +            },
        +            "required": {
        +              "properties": {
        +                "input": {
        +                  "description": "Whether the input field is required",
        +                  "type": "boolean"
        +                }
        +              },
        +              "type": "object"
        +            }
        +          },
        +          "type": "object"
        +        },
        +        "slug": {
        +          "description": "Tool URL slug",
        +          "type": "string"
        +        },
        +        "tier": {
        +          "description": "free or premium",
        +          "type": "string"
        +        },
        +        "type": {
        +          "description": "client, upload, or server",
        +          "type": "string"
        +        }
        +      },
        +      "type": [
        +        "object",
        +        "null"
        +      ]
        +    }
        +  },
        +  "type": "object"
        +}
    • Changedlist_tools_catalog1 field changed
      • changedOutput schema / (root)
        Previous value: -nullNew value: +{
        +  "properties": {
        +    "count": {
        +      "description": "Number of tools matching the applied filters",
        +      "type": "integer"
        +    },
        +    "generated_at": {
        +      "description": "ISO 8601 timestamp when the catalog was generated",
        +      "type": "string"
        +    },
        +    "tools": {
        +      "description": "List of matching tool definitions",
        +      "items": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "category": {
        +            "description": "Category slug the tool belongs to",
        +            "type": "string"
        +          },
        +          "description": {
        +            "description": "One-line tool description",
        +            "type": "string"
        +          },
        +          "input_type": {
        +            "description": "textarea, file, code, or mixed",
        +            "type": "string"
        +          },
        +          "keywords": {
        +            "description": "Search keywords",
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "name": {
        +            "description": "Human-readable tool name",
        +            "type": "string"
        +          },
        +          "slug": {
        +            "description": "Tool URL slug",
        +            "type": "string"
        +          },
        +          "tier": {
        +            "description": "free or premium",
        +            "type": "string"
        +          },
        +          "type": {
        +            "description": "client, upload, or server",
        +            "type": "string"
        +          }
        +        },
        +        "type": "object"
        +      },
        +      "type": "array"
        +    }
        +  },
        +  "type": "object"
        +}
  2. 3 tool updates
    • First observedexecute_tool
    • First observedget_tool_details
    • First observedlist_tools_catalog

Frequently Asked Questions

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables detection and analysis of pre-public product launches through web search, content extraction, AI-powered scoring, and automated alerting. Provides comprehensive tools for surfacing stealth startup signals before they trend publicly.
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    Browse IndustryLens's published competitive-intelligence reports and head-to-head competitor comparisons from any AI agent — real, source-backed data.
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables AI chat clients to perform market research and competitive intelligence by gathering company overviews, competitor lists, product portfolios, pricing snapshots, and recent news via live Tavily search.
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.6/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: listing tools, getting details of a specific tool, and executing a tool. No overlap in functionality.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern (execute_tool, get_tool_details, list_tools_catalog), making the naming predictable.

Tool Count4/5

With 3 tools, the set is minimal but appropriate for a meta-utility server that provides discovery, specification, and execution. Could be slightly thin, but reasonable.

Completeness5/5

The server covers the full lifecycle: listing all available tools, retrieving detailed info for a specific tool, and executing a tool. No obvious gaps for its purpose.

Resources