Skip to main content
Glama
yeisonmbotero

ghl-mcp-server

Ghl Call

ghl_call

Send HTTP requests to any internal GoHighLevel endpoint to perform operations not covered by dedicated tools. Supports GET, POST, PUT, PATCH, and DELETE, with writes disabled in read-only mode.

Instructions

Generic passthrough to any internal endpoint listed in docs/ENDPOINTS.md.

Use it for anything without a dedicated tool. Non-GET methods WRITE to the live account and are refused when GHL_READ_ONLY is enabled.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyNooptional JSON body.
hostNo"backend" (backend.leadconnectorhq.com) or "services" (services.leadconnectorhq.com).backend
pathYesabsolute API path, e.g. "/opportunities/pipelines". The placeholder "{loc}" is replaced by the location id.
queryNooptional query-string parameters.
methodYesHTTP method.
location_idNoGHL sub-account id (defaults to GHL_LOCATION_ID).

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.7/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden of behavioral disclosure. It discloses the critical side-effect: non-GET methods WRITE to the live account and are refused when GHL_READ_ONLY is enabled. It does not mention auth, rate limits, or error behavior, but the most important mutation/read-only trait is covered.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three short sentences with no filler: purpose, usage guidance, and safety warning. Each sentence earns its place and the most important information is front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a generic passthrough tool, the description plus a fully documented 6-parameter schema and an output schema cover what an agent needs: valid endpoint source, when to use it, and write-safety behavior. No critical operational context is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3. The description adds value by pointing to docs/ENDPOINTS.md as the source of valid paths and by explaining the behavioral meaning of non-GET methods, which helps agents reason about method and path parameters beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly identifies this as a 'Generic passthrough to any internal endpoint listed in docs/ENDPOINTS.md', which is a specific verb+resource. It also distinguishes itself from the many dedicated sibling tools by stating it is for anything 'without a dedicated tool'.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It explicitly says when to use it: 'Use it for anything without a dedicated tool.' This also implies when not to use it, and the warning about non-GET methods writing to the live account and being refused under GHL_READ_ONLY gives clear decision-relevant context.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.