Skip to main content
Glama
luistorres789321

ia-cae-zurekin-mcp

IA CAE Zurekin MCP 서버

인증된 CAEZ Urekin 내부 웹을 쿼리하기 위한 Node.js 기반 MCP 서버입니다.

포함된 기능

  • search_pages: 인증된 사이트에서 콘텐츠 검색

  • get_page: 특정 페이지 가져오기

  • extract_page_content: 구조화된 콘텐츠 반환

  • list_sections: 루트 페이지에서 탐색 가능한 링크 나열

Related MCP server: wikijs-mcp

요구 사항

  • Node.js 18+

  • 편집기 외부에서 이 프로젝트를 실행할 서버 또는 환경

  • 폼이 기본값과 일치하지 않는 경우 실제 웹에 맞게 로그인 로직 조정

설정

  1. .env.example.env로 복사합니다.

  2. 환경 변수를 입력하거나 조정합니다.

  3. 의존성을 설치합니다:

    • npm install

  4. 서버를 시작합니다:

    • npm start

주요 변수

  • CAEZ_BASE_URL: 내부 사이트의 기본 URL

  • CAEZ_USERNAME: 접속 사용자명

  • CAEZ_PASSWORD: 접속 비밀번호

  • CAEZ_LOGIN_URL: 기본 URL과 다른 경우 정확한 로그인 URL

  • CAEZ_LOGIN_USER_FIELD: 폼 내 실제 사용자 필드 이름

  • CAEZ_LOGIN_PASSWORD_FIELD: 폼 내 실제 비밀번호 필드 이름

  • CAEZ_LOGIN_EXTRA_FIELDS: 폼에 추가 필드가 있는 경우 JSON 형식으로 입력

  • CAEZ_SEARCH_PATH: 사이트에 특정 검색 URL이 있는 경우 내부 검색 경로

귀하의 사례를 위한 사전 로드된 설정

예제는 이미 다음 기반으로 조정되었습니다:

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

  • CAEZ_LOGIN_USER_FIELD=username

  • CAEZ_LOGIN_PASSWORD_FIELD=password

예상되는 조정 사항

다음 사항은 여전히 조정해야 할 가능성이 높습니다:

  • 리디렉션, CSRF 토큰 또는 SSO가 있는 경우 인증 흐름

  • 사이트에 명확한 엔드포인트가 없는 경우 검색 로직

  • 폼에 추가적인 숨겨진 필드가 있는 경우 해당 필드

사용자 지정 MCP와 함께 사용

배포 시 MCP 연결은 내부 웹이 아닌 이 서버를 가리켜야 합니다.

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