Skip to main content
Glama

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.

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.5/5 across 8 of 8 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct purpose: single URL audit, bulk search, URL comparison, principle retrieval, stats, category listing, semantic search, and brief synthesis. No two tools overlap in function.

Naming Consistency5/5

All tools follow the consistent pattern 'proximens_oracle_verb_noun' using snake_case. Verbs are descriptive and actions are clear, with only minor variation like 'bulk_search' vs 'search_principles' which is still understandable.

Tool Count5/5

With 8 tools, the server is well-scoped for a specialized GEO knowledge base and auditing service. Each tool is necessary and there are no redundant or missing core operations.

Completeness5/5

The tool set covers the full workflow: discover (search, list categories), retrieve (get principle, get stats), analyze (audit, compare), and generate (synthesize brief). No obvious gaps for the intended domain.

Available Tools

8 tools
proximens_oracle_audit_urlAudit URL against Proximens GEO OracleA
Read-only
Inspect

Pro-tier. Fetch and analyze a web page, then audit it against the Proximens Oracle GEO 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.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesTarget URL to audit
modeNofast = quick signal checks (seconds); deep = full AI-synthesized consultancy report with sector benchmark (~30-50s)fast
max_issuesNoMaximum issues to return (default 10)
client_nameNoOptional client identifier for the audit report header
branche_hintNoBranche hint in "main:sub" format, e.g. "health_wellness:yoga_studio". If omitted, principles are matched without branche filter.

Output Schema

ParametersJSON Schema
NameRequiredDescription
_wmNo
urlYes
_metaNo
errorNo
scoreNo
sectorNoDetected sector benchmark cohort (deep mode only)
statusYes
signalsNo
audit_idYes
deep_modeNoDeep-mode outcome: ok = full synthesized report; timeout_fallback = synthesis exceeded budget, fast result returned
score_setNo7-dimension GEO scorecard (deep mode only)
recommendationsNo
report_markdownNo
matched_principlesNo
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false. The description adds transparency about mode behavior, timeout fallback ('deep_mode="timeout_fallback"'), and return structure, which is valuable beyond the annotations. No contradictions.

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

Conciseness4/5

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

The description is well-structured, starting with purpose, then parameters in a clear INPUT block, and return values. It is somewhat lengthy but front-loads key information. Every sentence adds value, though could be slightly more concise.

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 the tool's complexity (5 parameters, output schema exists), the description covers all necessary aspects: input requirements, modes, optional parameters, return format (including deep mode specifics and fallback), and usage hints. It is fully self-contained.

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 baseline is 3. The description adds meaning by explaining mode options in detail, specifying 'branche_hint' format (main:sub), and clarifying that 'max_issues' has a default of 10. This improves usability beyond the schema alone.

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 states the tool audits a URL against Proximens Oracle GEO principles, specifying the verb ('audit'), resource ('URL'), and scope ('across all major GEO dimensions'). It effectively distinguishes from sibling tools like 'proximens_oracle_compare_urls' and 'proximens_oracle_bulk_search' by focusing on a 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.

Usage Guidelines4/5

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

The description offers explicit guidance on when to use 'fast' mode for quick checks and 'deep' mode for client-ready reports, and mentions the free tier is blocked. However, it does not explicitly exclude use cases or compare against sibling tools, leaving some ambiguity about when to choose this over alternatives like 'proximens_oracle_compare_urls'.

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

proximens_oracle_compare_urlsCompare URLs against Proximens GEO OracleA
Read-only
Inspect

Pro-tier. Fetch two web pages (your URL and a competitor's) and audit both against the Proximens Oracle GEO 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.

ParametersJSON Schema
NameRequiredDescriptionDefault
self_urlYesYour URL to audit
competitor_urlYesCompetitor URL to compare against

Output Schema

ParametersJSON Schema
NameRequiredDescription
_metaNo
errorNo
insightsYes
self_urlYes
self_scoreYes
self_matchedYes
competitor_urlYes
competitor_scoreYes
delta_principlesYes
competitor_matchedYes
Behavior4/5

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

Annotations already indicate non-destructive, read-only behavior. The description adds that it fetches two web pages and returns scores, principles, delta principles, and insights, but does not go beyond what annotations imply. Additional behavioral context (e.g., network calls) is implied but not explicitly harmful.

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 one concise paragraph with clear sections (purpose, input, output, use case). It is front-loaded and every sentence adds 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?

Given the presence of an output schema and annotations, the description is complete: it explains the tool's purpose, required inputs, output structure (including specific keys like delta_principles), and use case. The agent has enough information to correctly select and invoke the tool.

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?

Schema coverage is 100% with descriptions for both parameters. The description adds minimal extra meaning (confirms http/https format, reuse from schema). Baseline of 3 is appropriate as the schema already provides adequate parameter documentation.

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 states the tool compares two URLs using the Proximens Oracle GEO engine and computes a delta. It uses specific verbs ('Fetch', 'audit', 'compute') and distinguishes from sibling 'audit_url' which handles single URLs.

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 states 'USE WHEN you want a competitive GEO gap analysis between your page and a rival's', providing a clear context. It does not explicitly list when not to use, but the condition is sufficiently specific.

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

proximens_oracle_get_principleGet GEO principle by IDA
Read-onlyIdempotent
Inspect

Fetch one GEO principle from the Proximens Oracle 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.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesPrinciple UUID (from search_principles results)

Output Schema

ParametersJSON Schema
NameRequiredDescription
idYes
_wmNo
titleYes
summaryYes
branchesNo
categoryYes
full_textNo
confidenceYes
similarityNo
source_urlNo
source_typeNo
upgrade_hintNo
evidence_countNo
source_diversityNo
last_validated_atNo
Behavior4/5

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

Annotations declare readOnlyHint, destructiveHint, idempotentHint. Description adds tier-dependent return fields (Pro/Enterprise) and source of ID. No contradictions.

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?

Two concise sentences with explicit INPUT/RETURNS sections. Front-loaded with purpose, no wasted words.

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 single parameter and read-only nature, description fully covers input origin, tier-specific outputs, and usage context. Output schema exists, so return details are sufficient.

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 has 100% coverage for the single UUID parameter. Description adds context that ID comes from 'prior search_principles result', meaningfully supplementing 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 specifies 'Fetch one GEO principle by UUID' with clear verb+resource. It distinguishes from sibling 'search_principles' by noting it is for drill-down after obtaining an ID.

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 states 'USE WHEN you already have a principle id...' and gives typical usage pattern. No explicit when-not, but context is sufficient given simplicity.

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

proximens_oracle_get_statsGet Oracle statisticsA
Read-onlyIdempotent
Inspect

Return live aggregate statistics for the Proximens GEO Oracle 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.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
tier_hintNo
fetched_atNo
total_evaluatedNo
total_categoriesYes
total_principlesYes
last_validated_atNo
last_distillation_atNo
confidence_distributionNo
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, indicating a safe read operation. The description adds value by disclosing that the statistics are 'live,' includes tier-specific behavior (Pro/Enterprise extended metrics), and specifies the JSON return structure, which goes beyond annotations.

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 extremely concise, consisting of two sentences and a 'USE WHEN' clause. It is front-loaded with the main action and returns, with no extraneous words. Every sentence earns its place.

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 parameterless tool with an output schema (present but not shown), the description adequately explains the return values and usage context. It covers the main purpose and when to use. It could potentially mention prerequisites or rate limits, but given the simple nature, it is mostly complete.

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?

Schema description coverage is 100% with no parameters. The description redundantly states 'INPUT: none,' which adds no new meaning beyond the schema. Baseline 3 is appropriate as the description does not compensate for any missing parameter info.

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 states the tool returns live aggregate statistics for the Proximens GEO Oracle knowledge base. It specifies the return fields (total_principles, total_categories, etc.) and distinguishes from sibling tools like get_principle or search_principles by focusing on aggregate data rather than individual records.

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 says 'USE WHEN you need to gauge the size and quality of the corpus before relying on it,' providing clear context. It does not explicitly state when not to use or compare to alternatives, but the usage guidance is sufficient.

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

proximens_oracle_list_categoriesList GEO principle categoriesA
Read-onlyIdempotent
Inspect

List the GEO principle taxonomy of the Proximens Oracle 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.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
totalYes
cachedYes
categoriesYes
Behavior4/5

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

Annotations provide readOnlyHint=true, idempotentHint=true, destructiveHint=false; the description adds details about the live count, JSON structure with specific fields, and a reconciled total matching get_stats, which enriches behavioral understanding beyond annotations.

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 a single paragraph with all essential components: purpose, input, return format, usage guidance, and a list of categories. Every sentence adds value, and it 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?

Given zero parameters and a simple output, the description fully covers the tool's behavior, output structure, and relationship to other tools. The output schema exists, so no need to detail return values further.

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?

No parameters exist, so schema coverage is 100%. The description explicitly notes 'INPUT: none,' which is clear. Per guidelines, with 0 parameters, baseline is 4.

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 states the tool lists GEO principle categories with a live count, and distinguishes itself from siblings by referencing search_principles and 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 provides explicit guidance: 'USE WHEN you want to discover which categories exist before narrowing a search_principles call with the category filter.' This is clear and helpful, though it lacks explicit 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_oracle_search_principlesSearch GEO principles (Proximens Oracle)A
Read-onlyIdempotent
Inspect

Semantic search over the Proximens GEO Oracle: a curated, continuously-updated knowledge base of 3.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.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesNatural-language search query (e.g. "schema markup for local businesses" or "how to optimize for ChatGPT citations")
top_kNoNumber of principles to return (max 25)
categoryNoFilter by category (one of 13 GEO categories)
min_confidenceNoMinimum confidence score (0-1). Default 0.5 filters noise; raise to 0.8+ for high-confidence claims only

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultsYes
tier_noteNoFree-tier hint when top_k was capped
query_usedYes
total_in_databaseYes
Behavior5/5

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

Annotations declare readOnlyHint, idempotentHint, destructiveHint. Description adds that it returns ranked principles with relevance scores, tier-dependent fields, and explains input constraints thoroughly.

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

Conciseness4/5

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

Single paragraph is well-structured: purpose, input, output, usage. Could be slightly more concise, but no redundant 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?

Covers all aspects: knowledge base size, input parameters, return fields, tier differences, and usage scenario. Output schema exists but description provides sufficient context.

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 coverage is 100%, but description adds value: explains query length range, default top_k, min_confidence purpose ('filters noise; raise to 0.8+ for high-confidence'), and category listing.

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 states it performs semantic search over a curated knowledge base of GEO principles, and distinguishes from sibling tools like bulk_search and get_principle.

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?

Explicitly states when to use: 'USE WHEN you need evidence-backed answers about how AI search engines select, rank and cite web content.' Provides clear context.

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

proximens_oracle_synthesize_briefSynthesize Content Brief from Proximens OracleA
Read-only
Inspect

Generate a structured, GEO-optimized content brief for a topic using the Proximens Oracle. 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.

ParametersJSON Schema
NameRequiredDescriptionDefault
topicYes
target_brancheNo
competitor_urlsNo
word_count_targetNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
_metaNo
topicYes
brief_idYes
schema_markupNo
faq_suggestionsNo
suggested_structureYes
estimated_word_countYes
principles_to_addressYes
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false. Description adds value by detailing return structure (JSON with H1/H2, principles, FAQ, schema markup) and input constraints, surpassing what annotations provide.

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?

Two paragraphs are concise and front-loaded: first paragraph states purpose and input details, second covers returns and usage. Every sentence is informative with no waste.

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?

Given presence of output schema, the description need not explain return values in detail but does so helpfully. It covers inputs and outputs adequately, though 'principles' could be elaborated. Overall complete for a complex tool.

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 lists all parameters with constraints (e.g., topic 3-200 chars, target_branche enum, etc.), adding meaning beyond the schema. This compensates well.

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?

Description clearly states it generates a structured GEO-optimized content brief for a topic, using specific verb 'Generate' and resource 'content brief'. It distinguishes from sibling tools like audit_url or compare_urls by focusing on briefing content.

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?

Description includes explicit 'USE WHEN' guidance: when briefing a writer for AI search engine citation. It does not mention alternatives or exclusions, but the context from sibling tools makes it clear this is for brief creation.

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!

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources