Skip to main content
Glama
luistorres789321

ia-cae-zurekin-mcp

IA CAE Zurekin MCP-Server

Node.js MCP-Server für die authentifizierte Abfrage der internen CAEZ Urekin-Webseite.

Funktionsumfang

  • search_pages: Sucht nach Inhalten auf der authentifizierten Seite

  • get_page: Ruft eine bestimmte Seite ab

  • extract_page_content: Gibt strukturierte Inhalte zurück

  • list_sections: Listet navigierbare Links von einer Stammseite aus auf

Related MCP server: wikijs-mcp

Voraussetzungen

  • Node.js 18+

  • Ein Server oder eine Umgebung, in der dieses Projekt außerhalb des Editors ausgeführt werden kann

  • Anpassung der Login-Logik an die tatsächliche Webseite, falls das Formular nicht mit den Standardwerten übereinstimmt

Konfiguration

  1. Kopiere .env.example nach .env

  2. Ergänze oder passe die Umgebungsvariablen an

  3. Installiere die Abhängigkeiten:

    • npm install

  4. Starte den Server:

    • npm start

Hauptvariablen

  • CAEZ_BASE_URL: Basis-URL der internen Seite

  • CAEZ_USERNAME: Benutzername für den Zugriff

  • CAEZ_PASSWORD: Passwort für den Zugriff

  • CAEZ_LOGIN_URL: Genaue Login-URL, falls diese von der Basis-URL abweicht

  • CAEZ_LOGIN_USER_FIELD: Tatsächlicher Name des Benutzerfeldes im Formular

  • CAEZ_LOGIN_PASSWORD_FIELD: Tatsächlicher Name des Passwortfeldes im Formular

  • CAEZ_LOGIN_EXTRA_FIELDS: JSON mit zusätzlichen Formularfeldern, falls vorhanden

  • CAEZ_SEARCH_PATH: Interner Suchpfad, falls die Seite eine spezifische URL für die Suche hat

Vorkonfiguration für Ihren Fall

Das Beispiel wurde bereits mit dieser Basis angepasst:

  • CAEZ_LOGIN_URL=https://interna.caezurekin.biz/caezurekin

  • CAEZ_LOGIN_USER_FIELD=username

  • CAEZ_LOGIN_PASSWORD_FIELD=password

Wahrscheinliche Anpassungen

Es ist sehr wahrscheinlich, dass Sie noch Folgendes anpassen müssen:

  • den Authentifizierungsablauf, falls es Weiterleitungen, CSRF-Token oder SSO gibt

  • die Suchlogik, falls die Seite keinen klaren Endpunkt hat

  • alle zusätzlichen versteckten Formularfelder, falls vorhanden

Verwendung mit Ihrem benutzerdefinierten MCP

Wenn Sie es bereitstellen, muss die MCP-Verbindung auf diesen Server zeigen, nicht direkt auf die interne Webseite.

Available Tools

4 tools
extract_page_contentC

Extrae el contenido estructurado de una p�gina.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYes
include_tablesNo
include_linksNo

TDQS

C2.6/5.0
Behavior2/5

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

No annotations provided, so the description bears full burden. It implies a read operation ('extracts') but does not disclose side effects, idempotency, error handling, or any behavioral traits. Insufficient for a tool with zero annotations.

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 sentence, concise and front-loaded. No extraneous information. However, lacks structure (e.g., bullet points), but this does not detract from its brevity.

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

Completeness2/5

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

Given 3 parameters, no output schema, and no annotations, the description is too brief. Does not explain what 'structured content' means, how boolean parameters affect extraction, or the output format. Inadequate for effective agent usage.

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

Parameters1/5

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

Schema has 0% coverage (no property descriptions). The description does not explain what include_tables or include_links do, nor does it add any meaning beyond the schema. The description adds zero value for parameter understanding.

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

Purpose4/5

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

The description clearly states the tool extracts structured content from a page, using a specific verb and resource. It distinguishes from siblings like get_page (likely raw content) and list_sections (sections), but does not explicitly differentiate.

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

Usage Guidelines2/5

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

No guidance on when to use this tool versus alternatives like get_page or list_sections. No context about prerequisites or scenarios where this tool is preferred.

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

get_pageC

Obtiene una p�gina concreta del sitio.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlNo
pathNo

TDQS

C2/5.0
Behavior2/5

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

No annotations provided, so the description must disclose behavioral traits. It only says 'Gets' without confirming read-only status, authentication needs, or rate limits. The description adds minimal transparency beyond the tool's name.

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

Conciseness2/5

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

The description is overly brief (one sentence), sacrificing necessary detail for brevity. It omits parameter explanations and usage context, making it under-specified rather than concise.

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

Completeness1/5

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

Given no output schema and no parameter descriptions, the tool's behavior is almost entirely undocumented. The agent lacks info on return values, error handling, or how input fields relate to page retrieval, resulting in very poor completeness.

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

Parameters1/5

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

Schema description coverage is 0%, and the description does not explain the meaning or expected format of parameters 'url' and 'path'. Without any parameter information, the agent cannot construct valid calls effectively.

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

Purpose3/5

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

The description 'Gets a specific page of the site' provides a verb and resource but is vague, not distinguishing it from siblings like extract_page_content or list_sections. A clearer purpose would specify what 'get' means (e.g., retrieve metadata, content, or both).

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

Usage Guidelines2/5

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

No guidance on when to use this tool over siblings. For instance, should users call get_page before extract_page_content? No alternatives or exclusions mentioned, leaving the agent without decision context.

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

list_sectionsC

Lista secciones navegables del sitio.

ParametersJSON Schema
NameRequiredDescriptionDefault
root_pathNo/

TDQS

C2.4/5.0
Behavior1/5

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

No annotations are present, and the description does not disclose any behavioral traits such as authentication requirements, rate limits, or side effects. It only states the basic function.

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

Conciseness3/5

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

The description is a single short sentence, which is concise but may be too minimal. It front-loads the purpose but lacks supporting details.

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

Completeness1/5

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

Given the single parameter, no output schema, and no annotations, the description fails to provide sufficient context. It does not explain what 'navigable sections' are, how root_path affects results, or the output format.

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

Parameters1/5

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

The description does not explain the 'root_path' parameter or its effect. With 0% schema description coverage, the parameter semantics are left entirely to the agent to infer.

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 navigable sections of the site, using a specific verb and resource. It distinguishes from sibling tools like extract_page_content, get_page, and search_pages.

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

Usage Guidelines2/5

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

No guidance is provided on when to use this tool versus alternatives. There is no mention of context, prerequisites, or exclusions.

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

search_pagesC

Busca contenido dentro de la web interna autenticada.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYes
limitNo
sectionNo

TDQS

C2.4/5.0
Behavior2/5

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

With no annotations, the description bears full responsibility for behavioral disclosure. It only states 'Busca contenido' without detailing outcomes (e.g., returns page titles, snippets, or URLs), authentication specifics, or limits on input.

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

Conciseness3/5

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

The description is a single short sentence, which is concise but overly sparse. It does not waste words, but it lacks sufficient detail to be fully useful, sacrificing completeness for brevity.

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

Completeness2/5

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

Given three parameters, no output schema, and sibling tools, the description is incomplete. It does not explain return format, how to use the 'section' parameter, or behavior for missing/empty queries, leaving critical gaps.

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

Parameters1/5

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

The input schema has 0% description coverage. The description adds no explanation for any parameter (query, limit, section), leaving their meaning entirely to the schema names. This fails to add value beyond the bare schema.

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

Purpose4/5

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

The description clearly states the verb 'Busca' (search) and the resource 'contenido dentro de la web interna autenticada' (content within the authenticated internal web). It adequately distinguishes from sibling tools like get_page and extract_page_content by indicating a search capability.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives such as get_page or list_sections. It does not mention any prerequisites or scenarios where this tool is preferred.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 4 tool updatesv1.0.0
    • First observedextract_page_content
    • First observedget_page
    • First observedlist_sections
    • First observedsearch_pages

TDQS

B3/5.0
Disambiguation5/5

Each tool targets a distinct operation: extracting content from a page, retrieving a specific page, listing sections, and searching within the site. There is no overlap or ambiguity between them.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern (e.g., extract_page_content, get_page, list_sections, search_pages) using snake_case, making them predictable and easy to understand.

Tool Count5/5

The server has 4 tools, which is well-scoped for a website content retrieval and navigation purpose. Each tool serves a clear and necessary function without being redundant or excessive.

Completeness4/5

The tool set covers core operations: retrieving pages, extracting content, listing sections, and searching. It lacks features like listing pages within a section or getting page metadata, but these are minor gaps for the intended domain.

Maintenance

ActivityInactive
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/luistorres789321/ia-cae-zurekin-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server