Proximens Oracle
Server Details
1000+ Generative Engine Optimization (GEO) principles exposed via MCP for AI agents.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
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.
Tool Definition Quality
Average 4.6/5 across 8 of 8 tools scored.
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.
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.
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.
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.
Available Tools
8 toolsproximens_geo_audit_urlAudit URL against Proximens GEO EngineARead-onlyInspect
Pro-tier. Fetch and analyze a web page, then audit it against the Proximens GEO Engine principles across all major GEO dimensions (structured data, crawler access, content depth, freshness, E-E-A-T, multimodal). INPUT: url (required, http/https); optional mode ("fast" = quick signal checks, returns in seconds — the default; "deep" = a full AI-synthesized consultancy report in Dutch with a 7-dimension scorecard and sector benchmark, takes ~30-50s), client_name (report header), branche_hint ("main:sub", e.g. "health_wellness:yoga_studio"), max_issues (1-25, default 10). RETURNS: JSON with a 0-100 score, severity-ranked issues (critical/major/minor) each with a finding and an actionable suggestion, top recommendations, and a markdown report; deep mode additionally returns score_set (7 GEO dimensions), sector (benchmark cohort), and a full consultancy-grade report_markdown (deep_mode="timeout_fallback" means the synthesis exceeded its budget and the fast result was returned instead). USE fast mode for quick checks and bulk triage; USE deep mode when you need a client-ready audit report. Free tier is blocked.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Target URL to audit | |
| mode | No | fast = quick signal checks (seconds); deep = full AI-synthesized consultancy report with sector benchmark (~30-50s) | fast |
| max_issues | No | Maximum issues to return (default 10) | |
| client_name | No | Optional client identifier for the audit report header | |
| branche_hint | No | Branche hint in "main:sub" format, e.g. "health_wellness:yoga_studio". If omitted, principles are matched without branche filter. |
Output Schema
| Name | Required | Description |
|---|---|---|
| _wm | No | |
| url | Yes | |
| _meta | No | |
| error | No | |
| score | No | |
| sector | No | Detected sector benchmark cohort (deep mode only) |
| status | Yes | |
| signals | No | |
| audit_id | Yes | |
| deep_mode | No | Deep-mode outcome: ok = full synthesized report; timeout_fallback = synthesis exceeded budget, fast result returned |
| score_set | No | 7-dimension GEO scorecard (deep mode only) |
| recommendations | No | |
| report_markdown | No | |
| matched_principles | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Adds significant context beyond annotations: describes fetch+analyze behavior, fast vs deep modes with timing, and deep mode timeout fallback. Annotations already signal read-only and open-world; description enriches with operational details.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Well-structured with clear sectioning (INPUT, RETURNS, USE). Slightly verbose on deep mode fallback description, but overall efficient and front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given output schema exists, description covers all necessary aspects: input format, mode options, return structure including fallback, and usage guidance. Complete for a tool of this complexity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% lowering burden, but description adds value: explains mode trade-offs, branche_hint format and fallback, max_issues default. Goes beyond schema repetition.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states the tool fetches and audits a web page against GEO engine principles. Distinguishes from siblings like bulk_search and compare_urls by focusing on single URL audit.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit guidance: 'USE fast mode for quick checks and bulk triage; USE deep mode when you need a client-ready audit report.' Notes free tier blocked. Does not explicitly mention when not to use, but context is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
proximens_geo_bulk_searchBulk Search Proximens GEO EngineARead-onlyIdempotentInspect
Pro-tier. Run many GEO-principle searches in a single fast call. INPUT: queries (array of 2-100 natural-language strings, each 3-500 chars); optional top_k_per_query (1-10, default 5) and category filter. RETURNS: JSON with a results array (per query: the query, its matched principles, and a count), plus total_queries, total_matches and processing time. USE WHEN you need many lookups at once, e.g. a full-site audit or a keyword list, instead of repeated search_principles calls.
| Name | Required | Description | Default |
|---|---|---|---|
| queries | Yes | ||
| category | No | ||
| top_k_per_query | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| _meta | No | |
| results | Yes | |
| total_matches | Yes | |
| total_queries | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already cover read-only, idempotent, non-destructive. Description adds return format details (results per query, totals, processing time) and input constraints, enhancing behavioral context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Description is compact: purpose first, then parameter details, return format, and usage guidance. No redundant sentences; every sentence adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Covers input, output, and usage well. Missing details on category filter values (could reference list_categories) and error handling, but overall sufficient for a bulk search tool with output schema.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, but description explains 'queries' (array of natural-language strings, length constraints), 'top_k_per_query' (range and default), and 'category filter' (though not listing enum values). Adds meaning beyond schema types.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Run many GEO-principle searches in a single fast call' and distinguishes from sibling 'search_principles' by noting it avoids 'repeated search_principles calls'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly says 'USE WHEN you need many lookups at once, e.g. a full-site audit or a keyword list, instead of repeated search_principles calls', providing clear when-to-use and alternative.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
proximens_geo_compare_urlsCompare URLs against Proximens GEO EngineARead-onlyInspect
Pro-tier. Fetch two web pages (your URL and a competitor's) and audit both against the Proximens GEO Engine principles using the same audit engine as audit_url, then compute the delta. INPUT: self_url and competitor_url (both required, http/https). RETURNS: JSON with a 0-100 score per URL (same scoring as audit_url), the principles each page satisfies, the principles each page VIOLATES that the other satisfies (delta_principles), and strategic insights on where to close the gap. USE WHEN you want a competitive GEO gap analysis between your page and a rival's.
| Name | Required | Description | Default |
|---|---|---|---|
| self_url | Yes | Your URL to audit | |
| competitor_url | Yes | Competitor URL to compare against |
Output Schema
| Name | Required | Description |
|---|---|---|
| _meta | No | |
| error | No | |
| insights | Yes | |
| self_url | Yes | |
| self_score | Yes | |
| self_matched | Yes | |
| competitor_url | Yes | |
| competitor_score | Yes | |
| delta_principles | Yes | |
| competitor_matched | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Discloses return format (JSON with scores, principles, violations, insights) and that it uses the same engine as audit_url. No contradiction with annotations (readOnlyHint, openWorldHint).
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences plus structured INPUT/RETURNS section. No wasted words, front-loaded with purpose and key details.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Tool has only two simple parameters and output schema exists (referenced). Description covers usage, inputs, outputs, and differentiators. Fully adequate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Both parameters have descriptions in schema, and description adds value by noting both are required and http/https format. Schema coverage is 100%.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states it compares two URLs against GEO Engine principles, differentiates from sibling audit_url. Specific verb 'compare' and resource 'URLs' with clear scope.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly says 'USE WHEN you want a competitive GEO gap analysis' and contrasts with audit_url. Provides clear context for when to choose this tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
proximens_geo_get_principleGet GEO principle by IDARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Principle UUID (from search_principles results) |
Output Schema
| Name | Required | Description |
|---|---|---|
| id | Yes | |
| _wm | No | |
| title | Yes | |
| summary | Yes | |
| branches | No | |
| category | Yes | |
| full_text | No | |
| confidence | Yes | |
| similarity | No | |
| source_url | No | |
| source_type | No | |
| upgrade_hint | No | |
| evidence_count | No | |
| source_diversity | No | |
| last_validated_at | No |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
proximens_geo_get_statsGet GEO Engine statisticsARead-onlyIdempotentInspect
Return live aggregate statistics for the Proximens GEO Engine knowledge base. INPUT: none. RETURNS: JSON with total_principles (high-confidence count), total_categories, and on Pro/Enterprise also extended quality metrics (full corpus size and a confidence_distribution) plus the last-validated timestamp. USE WHEN you need to gauge the size and quality of the corpus before relying on it.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| tier_hint | No | |
| fetched_at | No | |
| total_evaluated | No | |
| total_categories | Yes | |
| total_principles | Yes | |
| last_validated_at | No | |
| last_distillation_at | No | |
| confidence_distribution | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds valuable behavioral context beyond the annotations: it discloses that the data is 'live aggregate statistics,' explains the distinction between total_principles and full corpus size on Pro/Enterprise, and mentions the last-validated timestamp. This gives the agent insight into what the results represent and when they might be incomplete.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact and well-organized: it leads with the core purpose, then clearly labels INPUT, RETURNS, and USE WHEN sections. Every sentence adds necessary information without redundancy or fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple tool with no parameters and rich annotations, the description covers the essential aspects: what it returns, when to use it, and the availability caveat for Pro/Enterprise. It is fully sufficient for an agent to invoke it correctly and interpret the results.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With zero parameters, the schema already fully covers the absence of inputs, and the description confirms 'INPUT: none.' No additional parameter explanation is needed, matching the baseline of 4 for no-parameter tools.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb-resource pair: 'Return live aggregate statistics for the Proximens GEO Engine knowledge base.' This clearly distinguishes it from sibling tools like 'audit_url' or 'search_principles' which perform different actions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description includes an explicit 'USE WHEN you need to gauge the size and quality of the corpus before relying on it,' providing a clear use case. However, it does not name any alternatives or specify when not to use this tool, so it stops short of the highest level of guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
proximens_geo_list_categoriesList GEO principle categoriesARead-onlyIdempotentInspect
List the GEO principle taxonomy of the Proximens GEO Engine with a live count of high-confidence principles per category. INPUT: none. RETURNS: JSON with a categories array of {category, count, description} sorted by count, plus a reconciled total that matches get_stats.total_principles. Categories: technical, structured-data, ai-search, content, e-e-a-t, freshness, multimodal, user-signals, performance, query-intent, internal-linking, mobile, other. USE WHEN you want to discover which categories exist before narrowing a search_principles call with the category filter.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| total | Yes | |
| cached | Yes | |
| categories | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, destructiveHint. Beyond that, the description discloses the exact output schema (categories array with category, count, description), sorting by count, and a reconciled total that matches get_stats.total_principles. This adds valuable behavioral context about return structure and consistency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured with sections (INPUT, RETURNS, USE WHEN) and is front-loaded with its purpose. The category list is useful but adds length; overall it is concise but slightly verbose, earning a 4 rather than 5.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple, zero-parameter read-only tool with output schema and annotations, the description fully covers purpose, output format, category enumeration, and use case. It also includes a consistency guarantee with get_stats.total_principles, leaving no meaningful gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Tool has zero parameters, and the input schema states 'No input parameters' (100% coverage). Description confirms 'INPUT: none.' Per the baseline for 0 parameters, this is a 4; the description does not need to add parameter details.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description opens with a specific verb+resource: 'List the GEO principle taxonomy of the Proximens GEO Engine with a live count of high-confidence principles per category.' It clearly distinguishes from siblings by noting the categories can be used to narrow a search_principles call.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicit 'USE WHEN' clause: 'USE WHEN you want to discover which categories exist before narrowing a search_principles call with the category filter.' This names the alternative tool (search_principles) and gives a concrete scenario, satisfying the need for when/when-not guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
proximens_geo_search_principlesSearch GEO principles (Proximens GEO Engine)ARead-onlyIdempotentInspect
Semantic search over the Proximens GEO Engine: a curated, continuously-updated knowledge base of 4.000+ verified Generative Engine Optimization (GEO/AEO) principles, each graded by a 0-1 confidence score and traceable to a verified source. INPUT: query (natural language, 3-500 chars); optional category (one of 13 GEO categories), top_k (1-25, default 10), min_confidence (0-1, default 0.5). RETURNS: ranked principles as JSON, each with id, title, summary, category, confidence and a relevance score; Pro/Enterprise tiers additionally return full_text and source. USE WHEN you need evidence-backed answers about how AI search engines (ChatGPT, Perplexity, Gemini, Google AI Overviews, Copilot) select, rank and cite web content.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Natural-language search query (e.g. "schema markup for local businesses" or "how to optimize for ChatGPT citations") | |
| top_k | No | Number of principles to return (max 25) | |
| category | No | Filter by category (one of 13 GEO categories) | |
| min_confidence | No | Minimum confidence score (0-1). Default 0.5 filters noise; raise to 0.8+ for high-confidence claims only |
Output Schema
| Name | Required | Description |
|---|---|---|
| results | Yes | |
| tier_note | No | Free-tier hint when top_k was capped |
| query_used | Yes | |
| total_in_database | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already cover readOnlyHint=true, destructiveHint=false, and idempotentHint=true, so the safety profile is known. The description adds meaningful context: the knowledge base is curated, continuously updated, has 4,000+ principles with confidence scores and source tracing, and Pro/Enterprise tiers return additional fields (full_text, source). This goes beyond annotations to clarify behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured with INPUT, RETURNS, and USE WHEN sections. Each sentence conveys essential information: knowledge base characteristics, parameter constraints, output format, and usage context. No filler or repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has 4 parameters, an output schema, and rich annotations, the description is complete: it explains what the knowledge base is, input constraints, return fields with tier differences, and when to use it. It leaves little ambiguity for an agent deciding whether to invoke this tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with detailed parameter descriptions for query, top_k, category, and min_confidence. The description summarizes these, including the same min_confidence advice already in the schema ('Default 0.5 filters noise; raise to 0.8+ for high-confidence claims only'). It adds the semantic-search framing but no new parameter-level meaning.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with 'Semantic search over the Proximens GEO Engine', a specific verb+resource pair that clearly identifies the operation. It uniquely positions this tool against siblings like proximens_geo_audit_url or proximens_geo_get_principle by emphasizing search over a structured knowledge base of GEO principles.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The 'USE WHEN' clause provides explicit guidance: 'when you need evidence-backed answers about how AI search engines (ChatGPT, Perplexity, Gemini, Google AI Overviews, Copilot) select, rank and cite web content.' This clearly separates it from audit/compare tools, though it does not explicitly name alternative tools or list when not to use.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
proximens_geo_synthesize_briefSynthesize Content Brief from Proximens GEO EngineARead-onlyInspect
Generate a structured, GEO-optimized content brief for a topic using the Proximens GEO Engine. INPUT: topic (3-200 chars); optional target_branche (one of 7 verticals), word_count_target (300-5000, default 1500) and up to 3 competitor_urls. RETURNS: JSON with a suggested H1 and H2 section structure with key points, the principles the content should address, and (Pro/Enterprise) FAQ suggestions and recommended schema.org markup. USE WHEN you need to brief a writer so a page is built to be cited by AI search engines.
| Name | Required | Description | Default |
|---|---|---|---|
| topic | Yes | ||
| target_branche | No | ||
| competitor_urls | No | ||
| word_count_target | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| _meta | No | |
| topic | Yes | |
| brief_id | Yes | |
| schema_markup | No | |
| faq_suggestions | No | |
| suggested_structure | Yes | |
| estimated_word_count | Yes | |
| principles_to_address | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false. Description adds that it returns JSON with specific structure (H1, H2, FAQ, schema markup), which is useful but does not disclose additional behavioral traits like auth requirements or error handling.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Four concise sentences: purpose, input, output, usage. No fluff. Each sentence adds distinct value, front-loaded with the core action.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given 4 parameters, output schema description, and annotations, the description covers inputs, outputs, and usage. Missing minor details like error states or rate limits, but overall largely complete for an API tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, so description must compensate. It does so by paraphrasing all parameters with ranges, defaults, and constraints (e.g., 'one of 7 verticals', '300-5000, default 1500', 'up to 3 competitor_urls'). This adds readability and context beyond the raw schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description explicitly states it generates a structured GEO-optimized content brief. It differentiates from sibling tools like audit, bulk search, etc. by specifying the use case: 'USE WHEN you need to brief a writer so a page is built to be cited by AI search engines.'
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Description provides clear when-to-use guidance via 'USE WHEN...' and lists input constraints. It does not include negative guidance (when not to use) or explicitly compare to siblings, but the context is clear enough.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- Alicense-qualityBmaintenanceMCP server exposing Generative Engine Optimization tools to any AI agent, enabling checking of llms.txt, auditing robots.txt for AI crawlers, and validating JSON-LD schema.MIT

AfterLaunchofficial
Alicense-qualityCmaintenanceGrowth marketing, SEO and GEO as agent tools: 29 tools for AI answer visibility across ChatGPT, Gemini, Perplexity and Google AI Overviews, a ranked backlog of growth moves, drafted deliverables, and ship actions. Hosted remote server at https://afterlaunch.io/api/mcp.MIT- Alicense-qualityDmaintenanceThe GEO check every vibe coder runs before they launch. MCP server that lints, auto-fixes, and tracks how AI agents discover any product. 6 tools — geo_check, geo_fix, geo_track_init, geo_prompts, geo_status, geo_corpus_query.MIT
- Alicense-qualityBmaintenanceExposes 120 named mental models as reasoning primitives via MCP, enabling AI agents to apply structured reasoning, generate prompts, and persist ledger-style outputs deterministically.Apache 2.0