Skip to main content
Glama

Server Details

MCP server for The Chancery Lane Project's climate-aligned contract clause knowledge graph.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
thechancerylaneproject/tclp-mcp
GitHub Stars
0

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.7/5 across 4 of 4 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a unique, well-defined role: entity_lookup is deterministic exact-match, search is semantic/BM25, taxonomy_content is faceted filtering, and taxonomy_facets is vocabulary discovery. No two tools overlap in purpose, and the descriptions explicitly contrast entity_lookup with search.

Naming Consistency2/5

Tool names are not consistent in grammatical pattern: entity_lookup is noun-verb (reverse of verb-noun), search is a bare verb, taxonomy_content and taxonomy_facets are noun-noun compounds. There is no predictable convention, though each name is individually descriptive.

Tool Count5/5

With only 4 tools, the set is tightly scoped for a read-only knowledge graph retrieval server. Each tool covers a distinct access mode (search, exact lookup, taxonomy browsing), so none feel redundant or missing at a high level.

Completeness4/5

The server covers the primary retrieval workflows: full-text/semantic search, deterministic entity lookup, and taxonomy-based browsing with facet discovery. The only notable gap is a direct get-by-ID tool, but agents can obtain full text via include_full_text on existing tools, so this is a minor workaround.

Available Tools

4 tools
entity_lookupAInspect

Find TCLP content nodes (clauses, glossary terms) associated with a named concept.

Unlike `search`, this performs a deterministic name match against Entity nodes in
the knowledge graph rather than a relevance-ranked semantic search. Use it when
you have a specific term or concept (e.g. "scope 3 emissions", "net zero") and
want to retrieve every clause or glossary entry that explicitly references it.

Args:
    name: The entity or concept name to look up (exact match, case-insensitive).
    limit: Maximum number of results to return (1–50).
    include_full_text: Include each hit's full body text (Markdown). Off by
        default — bodies are large; request only when you need the content,
        and prefer a small `limit` when you do.

Returns:
    JSON with "meta" and "results" where each hit includes the source content
    node and the entity names that matched.
ParametersJSON Schema
NameRequiredDescriptionDefault
nameYes
limitNo
include_full_textNo
Behavior4/5

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

With no annotations, the description carries the full transparency burden. It discloses key behavioral traits: the match is 'deterministic,' 'exact match, case-insensitive,' and `include_full_text` is described as large and off by default. The return structure is also outlined ('meta' and 'results'). It does not explicitly state read-only behavior or discuss errors/timeouts, but for a lookup tool this is a strong disclosure.

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?

The description is well-structured with a purpose sentence, an explicit comparison to `search`, an Args section, and a Returns section. Every sentence serves a functional purpose, and the most critical information (what it does, when to use it) is front-loaded without being verbose.

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

Completeness4/5

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

For a tool with three parameters, no annotations, and no output schema, the description covers the core aspects: lookup semantics, parameter constraints, performance guidance for large text, and a summary of return values. It falls slightly short by not detailing the shape of the `meta` field or error handling when no match is found, but it is otherwise quite complete.

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

Parameters5/5

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

The input schema has zero property descriptions (0% coverage), so the description must compensate. It does so excellently: `name` is 'exact match, case-insensitive,' `limit` is bounded 1–50, and `include_full_text` is explained with a performance warning about large bodies and a recommendation for a small `limit`. This adds significant semantic value beyond the bare 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 opens with a clear, specific statement: 'Find TCLP content nodes (clauses, glossary terms) associated with a named concept.' It further distinguishes itself from the sibling `search` by contrasting 'deterministic name match' with 'relevance-ranked semantic search,' making its resource and verb unambiguous.

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?

The description explicitly states when to use this tool: 'Use it when you have a specific term or concept... and want to retrieve every clause or glossary entry that explicitly references it.' It also provides a clear contrast to `search`, implying when not to use it (for semantic/relevance-ranked queries), fulfilling the alternatives requirement.

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

taxonomy_contentAInspect

List TCLP content (clauses, guides) filtered by taxonomy facet=value.

Multi-facet filters are combined with AND. Call `taxonomy_facets` first
to learn which facet names and slugs exist; using a name not in that
list returns a 400.

Args:
    filters: Mapping of facet name to value slug, e.g.
             `{"sector": "real-estate", "practice_area": "commercial"}`.
             Each facet may appear at most once.
    scope: `clause`, `guide`, or `all` (default).
    limit: Maximum results to return (1–100, default 25).
    offset: Result offset for paging (default 0).
    sort: `title`, `date_published_desc`, or `date_modified_desc`.

Returns:
    JSON with "meta" (totals, scope, filters echoed back) and "results"
    (each hit has `id`, `url`, `title`, `content_type`, dates, and a
    `facets` map of all taxonomy arrays on the node).
ParametersJSON Schema
NameRequiredDescriptionDefault
sortNotitle
limitNo
scopeNoall
offsetNo
filtersYes
Behavior5/5

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

With no annotations, the description fully carries the burden. It discloses AND semantics for multi-facet filters, the 'at most once' constraint, error behavior (400), default values for limit/offset, allowed sort values, and the exact return structure. This goes well beyond basic expectations.

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?

The description is well-structured with an opening summary, an Args list, and a Returns section. Every sentence adds value—no filler. Length is appropriate for five parameters and return details.

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?

Given there is no output schema, the description fully specifies the response shape. It also covers error handling, pagination defaults, sorting, and filtering semantics. A new agent would know exactly how to call this tool and what to expect.

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

Parameters5/5

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

Schema description coverage is 0%, so the description must explain all parameters. It does: filters with example mapping and constraints, scope options, limit range, offset paging, and sort enum. No gaps remain.

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 opens with a specific verb and resource: 'List TCLP content (clauses, guides) filtered by taxonomy facet=value.' This clearly distinguishes it from sibling tools like taxonomy_facets (which lists facets) and search (full-text).

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

Usage Guidelines4/5

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

Explicitly instructs to call taxonomy_facets first to learn valid facet names/slugs and warns that invalid names return 400. This gives strong usage context and a prerequisite, but does not explicitly contrast with alternatives like search or entity_lookup, so a 4 rather than 5.

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

taxonomy_facetsAInspect

List taxonomy facets and their value slugs across TCLP content.

Facets are taxonomy categories like `sector`, `practice_area`,
`application`, and `jurisdiction`. Each facet returns the list of slugs
that actually appear on the graph, with counts. Use this to discover
the vocabulary, then call `taxonomy_content` with chosen slugs.

Args:
    scope: Which labels to include — `clause` (ClauseName only),
           `guide` (Guide only), or `all` (both, the default).

Returns:
    JSON with "meta" and "facets". Each facet has `name`, `applies_to`
    (list of Neo4j labels carrying it), and `values` (list of
    `{slug, count}`, sorted by count desc).
ParametersJSON Schema
NameRequiredDescriptionDefault
scopeNoall
Behavior5/5

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

With no annotations, the description carries full burden and does so thoroughly. It details the return structure (JSON with meta and facets), facet fields (name, applies_to, values), and behavior (values are sorted by count desc, slugs that actually appear on the graph).

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?

The description is well-structured with clear sections for Args and Returns, uses precise technical language, and contains no filler. Every sentence contributes useful information.

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 simple one-parameter tool without an output schema, the description is remarkably complete. It explains the purpose, usage, scope effects, return format, and even the relationship to the sibling tool taxonomy_content, leaving no important gaps.

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

Parameters5/5

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

Schema description coverage is 0%, but the description fully documents the only parameter, scope, including the exact allowed values ('clause', 'guide', 'all') and their meanings. This compensates completely for the schema's lack of detail.

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 starts with a specific verb and resource: 'List taxonomy facets and their value slugs across TCLP content.' It clearly states what the tool does and identifies the facet categories, distinguishing it from sibling tools like taxonomy_content.

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?

The description provides explicit usage guidance: 'Use this to discover the vocabulary, then call taxonomy_content with chosen slugs.' This tells the agent when to use the tool and points to the appropriate alternative for subsequent actions.

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

Discussions

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

Related MCP Servers

  • A
    license
    C
    quality
    D
    maintenance
    A Model Context Protocol (MCP) server that connects GraphDB's SPARQL endpoints and Ollama models to Claude, enabling Claude to query and manipulate ontology data while leveraging various AI models.
    28
    3
    MIT
  • F
    license
    -
    quality
    B
    maintenance
    MCP server for building knowledge graphs from documents. It ingests PDF/PPTX/DOCX files, transcribes to Markdown, and uses LLM to bootstrap entity patterns and build a JSONL knowledge graph with RAG chunks.

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.