Skip to main content
Glama
tecof
by tecof

@tecof/mcp

stdio MCP server for the Tecof Developer API v1. Runs from inside a Tecof theme repo; reads theme components from disk (AST), converts the agent's simple "section" definitions into editor documents, and creates/updates draft pages via the Developer API. Publishing is always done from the panel (there is no publish in the API).

  • SDK: @modelcontextprotocol/server@^2 (+ zod@^4) — McpServer + serveStdio

  • Node ≥ 20, ESM

  • Tool annotations (readOnlyHint, destructiveHint) and _meta["anthropic/requiresUserInteraction"] (delete) supported

Installation

At the root of the theme repo:

# 1) Panelden API anahtarı üretin: Ayarlar → Geliştirici / API Anahtarları (scope: pages:read, pages:write)
# 2) .env (gitignore'da) içine yazın
echo 'TECOF_API_TOKEN=tcf_...' >> .env

The server runs via npx; no global install needed:

npx -y @tecof/mcp@latest

Environment variables

The project directory is resolved in the order TECOF_PROJECT_DIRCLAUDE_PROJECT_DIRprocess.cwd(); .env and .env.local are read from there. process.env is not overwritten — file values only fill in keys that are empty (.env.local > .env).

Variable

Required

Description

TECOF_API_TOKEN

yes

tcf_… personal access token

TECOF_API_URL

yes*

Backend address; if missing, NEXT_PUBLIC_BASE_URL is used

TECOF_THEME_ID

no

Global theme id; if missing, NEXT_PUBLIC_THEME_ID, and if that is also missing, the store's active theme

TECOF_LOCAL_URL

no

Local preview root (default http://localhost:3000)

TECOF_PROJECT_DIR

no

If the theme repo is in a different directory

If the token/URL is missing, the server still starts; list_components and validate_document work, page tools return an error with guidance. Logs are written only to stderr; uncaught errors also go to stderr, the process does not crash.

Security: TECOF_API_URL must be https. If an http:// (non-loopback) address is given, a stderr warning is printed at startup and the same hint is appended to every tool error; http→https redirects are not followed (Node fetch drops Authorization on redirect, producing a misleading 401) — a 3xx response is converted to a "TECOF_API_URL scheme/host is wrong" error. The request timeout (30 sec) covers the entire header + body read.

Claude Code — .mcp.json

{
  "mcpServers": {
    "tecof": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "${TECOF_MCP_PACKAGE:-@tecof/mcp@latest}"]
    }
  }
}

The TECOF_MCP_PACKAGE env overrides the package spec — before publishing to npm or for local development, point it at this repo folder (npx -y /path/to/tecof-mcp runs the bin in the folder):

export TECOF_MCP_PACKAGE=/Users/<siz>/Desktop/Tecof/tecof-mcp   # claude'u bu shell'den başlatın

Publishing (npm)

npm run build && npm test && node scripts/smoke.mjs
npm version patch            # ya da minor
npm publish --access public  # @tecof kapsamı — tecof-theme-editor/analytics ile aynı hesap

Codex — .codex/config.toml

[mcp_servers.tecof]
command = "npx"
args = ["-y", "@tecof/mcp@latest"]

Gemini CLI — .gemini/settings.json

{
  "mcpServers": {
    "tecof": {
      "command": "npx",
      "args": ["-y", "@tecof/mcp@latest"]
    }
  }
}

The token is never written to any configuration file; it stays in .env. The client process starts at the root of the theme repo, and the server reads .env from there.

Related MCP server: anticms-mcp

Tools

Tool

Input

What it does

get_site_context

Store, languages, theme (themeId/merchantThemeId/domain), token scope/expiry, page count

list_components

category?, component?, detail?: summary|full

Theme catalog (AST from disk, mtime cache). full: fields, options, slot allow, defaultProps, variants

list_pages

includeTemplates?

Page list (slug ascending)

get_page

page (id|slug), mode?: outline|full

outline: section/slot tree (id, type, short text); full: draftData

validate_document

{ sections } or { document }

Validates without saving; returns ok, errors, warnings, normalizedDocument

create_page

slug, title, sections, meta?, layoutFrom?, dryRun?

Creates a draft; Header/Footer are copied from shared components in the layoutFrom page (default home)

update_page

page, operations or document, meta?, dryRun?

GET → apply operations → validate → PUT (optimistic lock with expectedModifiedDate; clear message on 409)

delete_page

page, confirm: true

Soft delete — user confirmation required

get_preview_url

page, locale?

1-hour draft preview links (storefront + local)

Results are returned as content[0].text (JSON) + structuredContent; errors carry field/path info with isError: true (so the agent can fix them).

update_page operations

append_section{section} (before the Footer), insert_section{section, before?|after?} (if no anchor, appends like before the Footer), replace_section{id, section}, remove_section{id}, move_section{id, before?|after?}, set_props{id, props} (shallow merge), set_slot{id, slot, children} (replaces the slot entirely; new children are built first, old content is kept on failure), set_root_props{props}.

Behavior notes:

  • Shared components are read-only — including their child nodes. A node carrying sharedComponentId (Header/Footer) and all its descendants under its zones (Logo, NavLink, FooterColumn…) cannot be modified with set_props/set_slot/replace_section/remove_section; a "shared component — edit from the panel editor" error is returned. The shared root itself can be removed from the page with remove_section (with a warning; the master is not affected). These nodes are marked shared: true in the get_page outline.

  • Error / warning distinction (operations mode): The document from GET is first normalized (inline slot arrays left in props → zones; SharedComponentRef nodes whose master was deleted are dropped with a warning — the backend does the same on PUT). Nodes added/changed by the agent in this round are strictly validated (unknown type, allow violation, element-at-root → error); violations in pre-existing, untouched nodes are only warnings — an unrelated update is not blocked just because the theme changed. In document mode and in create_page/validate_document, all nodes are strictly validated.

  • Empty operations: [] (if there is no meta either) → "no operations to apply" error; no PUT is sent. If only meta is given, draftData is not sent (status does not go published→changed, no unnecessary revision is opened); the savedDraft field in the response indicates this.

  • Backend save warnings (in the envelope root warnings: [{code,path,message}], e.g. dropping a Header link whose master was deleted) are returned in the create_page/update_page response as server: [code] path: message lines.

Authoring format

The agent writes a section tree, not document JSON; id generation, defaultProps merging, slot → zone conversion, and multilingual shortcuts are done on the server.

{
  "type": "FeaturesSection",
  "props": { "columns": "3", "background": "dark" },
  "variant": "dark",                       // bileşenin variants anahtarı (varsa)
  "slots": {
    "contentSlot": [
      { "type": "Title", "props": { "text": { "tr": "Neden biz?", "en": "Why us?" }, "size": "lg" } }
    ],
    "itemsSlot": [
      { "type": "Card", "props": { "href": "/hakkimizda" },
        "slots": { "contentSlot": [ { "type": "Paragraph", "props": { "text": "<p>Hızlı teslimat</p>" } } ] } }
    ]
  }
}

Conversion rules:

  1. If type is not in the catalog → error; element category at the root → error; slot child outside allow → error.

  2. props = defaultProps (−id, −inline slot children) ← variants[variant].props (+_variant) ← user props.

  3. If slots[slot] is given, use it; if not, the sample children from defaultProps; if [] is given, empty. All are written to zones["<id>:<slot>"], and props[slot] = [].

  4. Multilingual shortcuts: "text"[{code: defaultLanguage, value}]; {tr, en}[{code,value}]; missing language is a warning. link: "/path"[{code, value:{url, target:"_self"}}]. upload: URL string → external file record.

  5. If a select/radio value is outside options → error. Keys prefixed with _ → error (className is free).

  6. id: 8 characters [A-Za-z0-9_-], unique across the document (a valid and unique props.id is accepted if provided).

Development

npm install
npm run build        # tsc → dist/ (+ dist/bin.js +x)
npm test             # vitest (parser, build, validate, operations, api mock, config, uçtan uca MCP)
node scripts/smoke.mjs   # dist/bin.js'i stdio ile ayağa kaldırıp initialize + tools/list doğrular

Tests do not make requests to a real backend (fetch mock); the theme catalog is read from the copied components under test/fixtures/theme.

Programmatic use (HTTP transport, etc.):

import { buildServer, ServerContext, loadConfig } from "@tecof/mcp";
const ctx = new ServerContext({ config: loadConfig() });
const server = buildServer({ ctx }); // McpServer — istediğiniz transport'a bağlayın

Available Tools

9 tools
create_pageSayfa oluştur (taslak)A

Yazarlık biçimindeki bölümlerden yeni bir TASLAK sayfa oluşturur. Header/Footer, layoutFrom sayfasındaki ortak bileşenlerden otomatik kopyalanır (varsayılan: home) — bunları sections içinde vermeyin. Önce list_components (full) ile alanları doğrulayın; dryRun:true ile kaydetmeden deneyin.

ParametersJSON Schema
NameRequiredDescriptionDefault
metaNo
slugYesURL slug'ı, örn. 'hakkimizda' (sunucu normalize eder)
titleYesPanelde görünen sayfa adı
dryRunNotrue: kaydetme, yalnız doğrula + outline döndür
sectionsYesSayfa bölümleri (Header/Footer HARİÇ), sırayla
layoutFromNoHeader/Footer kaynağı: "home" (varsayılan), başka bir slug, ya da "none"

TDQS

A4.4/5.0
Behavior4/5

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

Discloses that header/footer are auto-copied from layoutFrom and that this creates a draft. The dryRun tip reveals how the tool behaves during validation. Annotations already signal write and non-destructive, so the description adds context without contradicting them.

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

Conciseness5/5

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

Three sentences, front-loaded with the core action, then critical constraints and prerequisites. Every sentence earns its place; no fluff.

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 the tool's complexity (nested sections, 6 params, no output schema), the description covers essential behaviors: draft creation, auto-copy, field validation, and dryRun workflow. It omits return format for non-dry-run saves, but that is a minor gap for a create operation.

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 covers 83% of parameters, and the description adds key semantic meaning: do not include layout-sourced header/footer in sections, and use dryRun to avoid saving. It also reinforces the layoutFrom default. This enriches the schema without redundant restating.

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

Purpose5/5

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

The description opens with a specific verb-object pair: 'yeni bir TASLAK sayfa oluşturur' (creates a new DRAFT page), clearly distinguishing it from update_page and delete_page. The 'TASLAK' qualifier adds precise scope.

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?

Provides explicit guidance: validate fields with list_components first, use dryRun:true to test without saving, and warns against including header/footer in sections. It does not explicitly state when to use update_page for existing pages, 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.

delete_pageSayfayı silA
DestructiveIdempotent

Sayfayı siler (soft delete; panelden geri alınabilir). Kullanıcı onayı olmadan ÇAĞIRMAYIN — confirm:true kullanıcının açık onayını temsil eder. Şablon sayfalar silinemez.

ParametersJSON Schema
NameRequiredDescriptionDefault
pageYesSayfa id'si (24 hex) ya da slug'ı (örn. 'home', 'hakkimizda')
confirmYesKullanıcı silmeyi açıkça onayladı

TDQS

A4.7/5.0
Behavior4/5

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

Annotations indicate destructiveHint:true, and the description adds that it's a soft delete, reversible from the panel. This adds value beyond annotations by explaining the reversibility, which is critical for an AI agent to avoid unnecessary caution. However, it doesn't detail other behaviors like idempotency effects, but that's not required.

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 sentences, front-loaded with the primary action and critical caveats. No fluff; every sentence adds essential context. Highly concise and well-structured.

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 (soft delete, confirmation requirement, template restriction) and the absence of an output schema, the description covers all necessary operational details. It is complete for safe, correct use.

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 covers both parameters fully (page with format examples, confirm with const true). The description adds the meaning of confirm as explicit approval, which is important context beyond the schema. It doesn't repeat schema details, so credit for supplementary clarification.

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 deletes a page ('Sayfayı siler') and immediately clarifies it is a soft delete that can be undone from the panel. This distinguishes it from a hard delete and aligns with the sibling tools like create_page and update_page.

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 instructs not to call without user consent, defines the 'confirm:true' parameter as representing explicit user approval, and mentions restriction on template pages. This provides strong guidance on when to invoke and when not to.

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

get_pageSayfayı getirA
Read-onlyIdempotent

Bir sayfanın taslağını döner. mode=outline (varsayılan): bölümler ve slot çocukları id/type/kısa metinle — update_page için id'leri buradan alın. mode=full: tam draftData JSON.

ParametersJSON Schema
NameRequiredDescriptionDefault
modeNo
pageYesSayfa id'si (24 hex) ya da slug'ı (örn. 'home', 'hakkimizda')

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and idempotentHint=true, so the safety profile is covered. The description adds behavioral detail about what each mode returns (outline summary with IDs/types/slots vs full draftData JSON), which is useful beyond the 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?

Two sentences with clear structure. The description front-loads the purpose and immediately explains modes, including a practical hint for update_page. No fluff.

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?

Without an output schema, the description clearly explains what each mode returns (outline with IDs and short text; full with complete JSON). It also notes the default mode and the use case for update_page, making the behavior fully transparent despite the absence of an output schema.

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 describes 'page' with format (hex or slug), and description explains the 'mode' parameter including its default and meaning of both values. Since schema coverage is 50% (only 'page' described), the description effectively compensates and adds semantic value.

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 returns a page draft, distinguishes two modes (outline vs full) and explicitly connects to update_page for ID retrieval. This goes beyond the tool name and clarifies the exact resource and behavior.

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?

It explains when to use mode=outline (to get IDs for update_page) and mode=full for complete JSONapis. While it doesn't explicitly say when not to use this tool vs siblings, the context is clear from the mode explanations and the sibling list (update_page, delete_page, etc.).

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

get_preview_urlÖnizleme URL'si alA
Read-only

Sayfanın TASLAK hâli için 1 saat geçerli önizleme bağlantıları: yayındaki domain (storefront) ve yerel geliştirme (TECOF_LOCAL_URL). Yayınlama panelden yapılır.

ParametersJSON Schema
NameRequiredDescriptionDefault
pageYesSayfa id'si (24 hex) ya da slug'ı (örn. 'home', 'hakkimizda')
localeNoDil kodu (varsayılan: mağazanın varsayılan dili)

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so the bar is lower. The description adds behavioral details: links are valid for 1 hour, and both storefront and local development URLs are provided. It also clarifies that publishing is separate, which adds context 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 two sentences, front-loaded with the core purpose and key constraints (1-hour validity, draft state, two URL types). No wasted words.

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?

With no output schema, the description explains that preview links are returned for two environments)Skip but doesn't detail the response structure. It also mentions the 1-hour expiry and that publishing is done from the panel, which helps context. Missing pagination or error behavior is acceptable given annotations and simplicity.

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 clear descriptions for page and locale params. The tool description does not add significant param-level detail beyond what's in the schema, so baseline 3 is appropriate. It does add the draft context, but that's not param-specific.

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 generates preview URLs for draft pages, specifying the 1-hour validity and the two environments (storefront and local development). This distinguishes it from sibling tools like get_page which retrieves page data, and the scope (drafts only) is explicit.

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 implies when to use this tool (for drafts before publishing) and notes that publishing is done from the panel. While it doesn't explicitly name alternative tools, the context is clear enough. However, it lacks explicit exclusions or comparisons to siblings.

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

get_site_contextSite bağlamını getirA
Read-onlyIdempotent

Mağaza (diller, varsayılan dil), aktif tema (themeId/merchantThemeId/domain), API anahtarının kapsamı ve bitişi, sayfa sayısı. Diğer araçlardan önce çağırın.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.3/5.0
Behavior4/5

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

Annotations provide readOnlyHint=true, idempotentHint=true, and destructiveHint=false, which already convey safety. The description adds behavioral context by listing what data is returned (languages, theme, API key scope/expiry, page count), which is not fully captured by annotations. It doesn't mention any side effects, but given the read-only hints, the bar is lower. The description adds value by detailing the content of the context.

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, compact sentence in Turkish, listing exactly the key information: what is retrieved (store, theme, API key scope, page count) and the usage guidance. Every word earns its place; no fluff. Front-loaded with the core content and ends with the directive.

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?

The tool has no parameters, no output schema, but annotations are comprehensive (read-only, idempotent, non-destructive). The description explains what data is returned and when to call it. Given the simplicity of a zero-parameter tool, the description is complete enough. It doesn't describe return format, but without an output schema, that's acceptable for such a simple tool. The 'call before others' guidance is the key contextual information.

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?

The tool has 0 parameters, so no parameter documentation is needed. The schema is empty and coverage is 100%, which is trivially satisfied. The description adds value by explaining what the tool retrieves, which isn't parameter-related but still useful for understanding the output. Baseline for 0 params is 4, and the description does not detract.

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 retrieves site context: store languages, active theme data (themeId/merchantThemeId/domain), API key scope/expiry, and page count. It distinguishes from siblings by explicitly covering site-level context, whereas siblings focus on specific components/pages. However, the title is in Turkish (Site bağlamını getir) while description is in Turkish as well, which is coherent but not in English.

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 instructs 'Diğer araçlardan önce çağırın' (Call before other tools), providing clear when-to-use guidance. This is a strong usage directive, distinguishing it as a prerequisite step. No alternatives are named, but the instruction is unambiguous.

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

list_componentsTema bileşenlerini listeleA
Read-onlyIdempotent

Tema reposundaki section ve element bileşenlerini diskten okur. summary: ad, label, kategori, slot adları. full: alanlar (tip, seçenekler, slot allow listesi), defaultProps, variants. Bölüm yazmadan önce full ile alan adlarını doğrulayın.

ParametersJSON Schema
NameRequiredDescriptionDefault
detailNoVarsayılan: summary (component verilmişse full)
categoryNoYalnız bu kategori
componentNoTek bileşen adı (büyük/küçük harf duyarsız)

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds useful behavioral context: it reads from disk (implying file system access), and explains the difference between summary and full detail levels, which is beyond 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?

The description is concise and front-loaded with the core purpose. It uses two sentences to convey the main function and the key usage tip, with no wasted words.

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 the tool's moderate complexity (3 optional params, no output schema), the description is complete enough. It explains the two detail levels and the validation use case. The lack of output schema means the description doesn't need to explain return values, and the annotations cover safety. A small gap is not mentioning pagination or performance, but that's not critical for a listing 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 description coverage is 100%, so the schema already documents all three parameters. The description adds context about the default behavior (summary, or full if component is given) and the purpose of the full detail (field names, defaultProps, variants), which adds some value beyond the schema but doesn't significantly expand parameter semantics.

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 reads section and element components from the theme repository, with a specific verb ('reads from disk') and resource ('theme repo components'). It distinguishes from siblings by focusing on component listing rather than pages or site context.

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 clear context for when to use the tool, especially the instruction to validate field names with full detail before writing sections. It doesn't explicitly mention alternatives, but the sibling tools are distinct enough that this is not a major gap.

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

list_pagesSayfaları listeleA
Read-onlyIdempotent

Aktif temadaki sayfaları listeler (id, slug, başlık, durum: draft/published/changed, tarihler).

ParametersJSON Schema
NameRequiredDescriptionDefault
includeTemplatesNoŞablon sayfaları da dahil et (salt-okunur)

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, openWorldHint=true, idempotentHint=true, destructiveHint=false, which fully describe the safety profile. The description adds that it lists pages in the 'active theme', which is a useful context about scope. It doesn't detail behavior like pagination or sorting, but with annotations covering the read-only and non-destructive nature, this is sufficient.

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, concise sentence that packs all essential information: what it does, the scope (active theme), and what fields are returned. No fluff, no redundancy. It is front-loaded with the verb 'listes' and the resource 'pages'.

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 that this is a simple list operation with only one optional parameter and no output schema, the description is fairly complete. It covers the purpose, the scope, and the return fields (id, slug, title, status, dates). The lack of explicit return format (array vs. object) is a minor gap, but for a list tool without a complex output schema, this is acceptable. It doesn't mention filtering by status, but that's a feature not promised.

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% for the single optional parameter (includeTemplates). The description does not add any additional meaning about the parameter beyond what the schema says ('include template pages (read-only)'). Since the schema fully documents the parameter, the baseline of 3 is appropriate; the description adds no extra value here.

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 explicitly states the tool's purpose: 'list pages in the active theme' with specific fields (id, slug, title, status: draft/published/changed, dates). The verb 'listes' (Turkish for 'list') clearly indicates a read-only operation, distinguishing it from siblings like 'create_page', 'update_page', 'delete_page', and 'get_page'.

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 makes clear the context: it lists pages in the active theme, which is a distinct context from 'get_site_context' or 'list_components'. It doesn't explicitly state when not to use it or alternative tools, but the context of listing all pages vs. getting a specific page is implied. A slight gap is the lack of mention that this tool is the right choice for overview tasks vs. 'get_page' for details.

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

update_pageSayfayı güncelle (taslak)A

Sayfa taslağını günceller. Ya operations (append/insert/replace/remove/move_section, set_props, set_slot, set_root_props — id'ler get_page outline'dan; append_section ve anchor'sız insert_section yeni bölümü Footer'ın ÖNÜNE koyar) ya da document (tam doküman) verin; meta ile başlık/slug/meta alanları (yalnız meta verilirse draftData'ya dokunulmaz). Ortak bileşenler (Header/Footer) ve onların ALT düğümleri değiştirilemez. dryRun:true kaydetmez.

ParametersJSON Schema
NameRequiredDescriptionDefault
metaNo
pageYesSayfa id'si (24 hex) ya da slug'ı (örn. 'home', 'hakkimizda')
dryRunNo
documentNoTam editör dokümanı {root, content, zones}
operationsNo

TDQS

A4.2/5.0
Behavior4/5

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

The description explicitly mentions the `dryRun:true` test mode and the restriction that Header/Footer children cannot be modified. It also notes that operations require IDs from get_page and that insert without anchor places new section before Footer. These are non-obvious behaviors that add value beyond any annotations.

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 dense paragraph with many clauses separated by semicolons and em dashes. While it contains high-value info, the run-on structure makes it hard to parse quickly. Breaking it into a few bullet points or sentences would improve scannability.

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?

The description covers the three update paths (operations, document, meta), key constraints, and the dryRun flag. It does not mention error handling or return values, but given that the tool is an update operation, the absence of output description is acceptable. The description is largely complete for the tool's complexity.

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?

The schema already describes the operations array structure and prop formats in detail cliffhanger. The description adds semantic value by explaining the meaning of each operation type (append, insert, replace, remove, move_section, set_props, etc.) and the rule about Footer placement for insert_section. It also clarifies the meta vs operations vs document distinction.

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 updates a page draftlying, then specifies the three modes: operations, document, or meta. It uses specific verbs (append, insert, replace, remove, move_section) and names the resource (page), making the purpose unambiguous.

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?

Provides explicit guidance on when to use operations vs document vs meta, and explains how to obtain IDs (from get_page outline) and where new sections are placed (before Footer). This goes beyond basic context, though it doesn't compare to sibling tools like `create_page` or `publish_page`.

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

validate_documentDokümanı doğrulaA
Read-onlyIdempotent

Kaydetmeden doğrular. Ya sections (yazarlık biçimi: type/props/variant/slots) ya da document (tam {root,content,zones}) verin. Hatalar yol + açıklama ile döner; ok=true ise normalizedDocument kaydedilebilir haldedir.

ParametersJSON Schema
NameRequiredDescriptionDefault
documentNoTam editör dokümanı {root, content, zones}
sectionsNo

TDQS

A4.7/5.0
Behavior5/5

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

Beyond the readOnly and idempotent annotations, the description details behavior that is not visible in the schema: errors include a path and explanation, and an `ok=true` result indicates a saveable normalizedDocument. This adds genuinely useful 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.

Conciseness5/5

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

Two short, front-loaded sentences deliver all necessary information: non-saving behavior, input alternatives, and output semantics. No redundant filler; every phrase adds value.

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

Completeness5/5

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

For a validation tool with nested inputs and no output schema, the description covers the input contract, the non-destructive nature, the error shape, and the conditions for a saveable result. It is sufficient for an agent to invoke it correctly.

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?

The description directly supplements the schema by explaining that the caller must provide either `sections` in authorship format or a full `document` with `{root, content, zones}`. It also highlights relevant inner fields like type/props/variant/slots, compensating for the top-level schema coverage gap.

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 identifies a specific action: validate a document without saving it. It defines the two accepted input forms (`sections` and `document`) and distinguishes the tool from page-management siblings by emphasizing it does not persist.

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 phrase 'without saving' and the kirjeld of the two accepted input formats provide clear context that validation is meant to be a pre-save check. Explicit alternative tools are not named, but the functional boundary is clear enough for an agent to select it.

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. 9 tool updatesv0.1.0
    • First observedcreate_page
    • First observeddelete_page
    • First observedget_page
    • First observedget_preview_url
    • First observedget_site_context
    • First observedlist_components
    • First observedlist_pages
    • First observedupdate_page
    • First observedvalidate_document

TDQS

A4.5/5.0
Disambiguation5/5

Every tool has a clearly distinct purpose: context retrieval, component listing, page listing/reading, validation, page CRUD, and preview URL generation. There is no overlap in functionality, making tool selection unambiguous.

Naming Consistency5/5

All tool names follow a consistent verb_noun snake_case pattern (get_site_context, list_components, list_pages, get_page, validate_document, create_page, update_page, delete_page, get_preview_url). The pattern is uniform and predictable.

Tool Count5/5

9 tools is appropriate for a page management server. The scope covers context, components, page lifecycle (create/read/update/delete), validation, and preview. Each tool earns its place with no redundancy.

Completeness5/5

The tool surface covers the full page editing workflow: context discovery, component introspection, page listing/reading, validation, CRUD operations, and preview generation. Publishing is intentionally left to the panel, so no critical gap exists. The domain is fully addressed.

Maintenance

ActivityMaintained
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/tecof/tecof-mcp'

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