Skip to main content
Glama

Get GEO principle by ID

proximens_geo_get_principle
Read-onlyIdempotent

Fetch one GEO principle from the Proximens GEO Engine by its UUID. INPUT: id (UUID, normally taken from a prior search_principles result). RETURNS: a single principle as JSON with id, title, summary, category and confidence; Pro/Enterprise tiers additionally return full_text, source_url, source_type, evidence_count and the last-validated timestamp. USE WHEN you already have a principle id and need its full detail — typically to drill down after search_principles.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesPrinciple UUID (from search_principles results)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
_wmNo
titleYes
summaryYes
branchesNo
categoryYes
full_textNo
confidenceYes
similarityNo
source_urlNo
source_typeNo
upgrade_hintNo
evidence_countNo
source_diversityNo
last_validated_atNo

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already establish readOnly, idempotent, and non-destructive hints. The description adds concrete behavioral context: it returns a single principle with specific fields, and notes tier-dependent additional fields. This goes beyond the annotations without contradicting them.

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 sentences, front-loaded with the primary purpose, then logically structured with INPUT, RETURNS, and USE WHEN. Every sentence provides distinct value with no redundancy.

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 single-param fetch tool, the description fully covers the use case, return format, tier differences, and typical workflow. An output schema exists, so return values need no elaboration, but the description still supplies it. No gaps in necessary context.

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

Parameters3/5

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

The input schema already documents id with 'Principle UUID (from search_principles results)' at 100% coverage. The description repeats this and adds 'normally taken from a prior search_principles result,' a minor enrichment. Baseline 3 is justified because the schema carries the semantic weight.

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 'Fetch one GEO principle from the Proximens GEO Engine by its UUID,' naming a specific action (Fetch), the resource (one GEO principle), and the identifier method (UUID). This clearly differentiates it from siblings like search_principles or get_stats.

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?

The description explicitly states 'USE WHEN you already have a principle id and need its full detail — typically to drill down after search_principles.' This provides strong contextual timing but does not explicitly list alternatives or when-not-to-use scenarios, so a 4 is appropriate.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.5/5.0
Disambiguation5/5

Each tool targets a distinct operation: auditing a URL, comparing two URLs, bulk search, single principle lookup, stats, category listing, semantic search, and brief synthesis. Even audit_url and compare_urls are clearly separated by the comparison/delta aspect.

Naming Consistency5/5

All tools follow a consistent proximens_geo_ prefix with snake_case and mostly verb_noun pattern (audit_url, compare_urls, get_principle, get_stats, list_categories, search_principles, synthesize_brief). bulk_search is a minor variation but still fits the readable convention.

Tool Count5/5

8 tools is well-scoped for a specialized GEO engine API. Each tool covers a clear need without redundancy, and the count is neither too thin nor overwhelming.

Completeness4/5

The surface covers the main workflows: discovering principles (search, categories, stats), retrieving details (get_principle), auditing URLs (audit, compare), bulk operations (bulk_search), and generating briefs. A minor gap is lack of a direct 'list all principles by category' endpoint, but search with category filter effectively covers this.

Resources