Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Fetches, parses, and summarizes ETSI telecommunications and media standards documents, enabling Claude to autonomously look up and ingest standards mid-conversation for answering questions, generating conformant code, or writing XML.

README.md

ETSI Standards Connector

An MCP (Model Context Protocol) server that fetches, parses, and summarises ETSI telecommunications and media standards documents using Claude. Once registered, Claude can autonomously look up and ingest standards mid-conversation, then use the resulting summaries to answer questions, write conformant XML, or generate code that meets a specification.

How it works

You: "Does ETSI TS 102 818 define a required XML namespace?"

Claude --> search_standard("ETSI TS 102 818")
       --> ingest_standard("ETSI TS 102 818")   [downloads PDF, summarises with Claude Opus]
       --> reads standards/TS-102-818.md
       --> "Yes. Clause 5.2 [M] requires the namespace..."

The pipeline has three stages:

1. Search — queries the ETSI standards search API to find the current version of a standard and its PDF download URL.

2. Ingest — downloads the PDF, extracts the text, and calls Claude Opus to produce a structured summary. The summary captures all mandatory/optional requirements, data structures, workflows, allowed values, and normative references. It is written to standards/<id>.md and cached for future use.

3. Query — any subsequent question, code generation, or XML output task reads the local summary rather than the PDF, keeping token costs low.

Tools exposed over MCP

| Tool | Description | |------|-------------| | search_standard | Search the ETSI catalogue by standard number or keywords. Returns up to 20 matches sorted most-recent first. | | fetch_standard | Download and parse an ETSI standard PDF. Returns the document text and summarisation instructions to Claude, which then produces the summary and calls save_summary. Pass refresh: true to re-fetch. | | save_summary | Persist a summary to standards/<id>.md. Called by Claude after summarising the output of fetch_standard. | | get_summary | Read a summary that has already been ingested. | | list_ingested | List all standards that have been summarised locally. |

A resource template standards://{id} also exposes summaries directly as MCP resources.

Summary format

Every standards/<id>.md follows a fixed schema designed to be token-efficient and machine-readable:

  • Scope — what the standard covers
  • Key Concepts — terms with definitions
  • Normative References — other standards required for conformance
  • Data Structures — fields, types, allowed values; binary structures include byte offsets and hex values
  • Rules and Constraints — numbered list, each prefixed [M] (mandatory) or [O] (optional); recommended values marked *
  • Workflows and Sequences — numbered steps or Mermaid diagrams
  • Conformance Requirements — all SHALL / SHOULD / MAY clauses
  • Related Standards — standards that may warrant further ingestion

Requirements

  • Node.js 20 or later

No Anthropic API key is required in the MCP server. Summarisation is performed by the Claude instance that is already running (Claude Code or Claude Desktop) — the server only handles fetching and parsing.

Installation

git clone <repo>
cd claude-etsi-connector
npm install
npm run build

Registering with Claude

Claude Code (global — available in all projects)

claude mcp add --scope user etsi -- node /absolute/path/to/claude-etsi-connector/dist/src/server.js

This writes to ~/.claude.json. No API key configuration is needed.

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS):

{
  "mcpServers": {
    "etsi": {
      "command": "node",
      "args": ["/absolute/path/to/claude-etsi-connector/dist/src/server.js"]
    }
  }
}

Restart Claude Desktop after saving.

Verify

echo '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"test","version":"1"}}}' \
  | node dist/server.js

You should see a JSON response containing "name":"etsi-connector".

Environment variables

| Variable | Default | Description | |----------|---------|-------------| | ETSI_STANDARDS_DIR | ./standards | Where summary .md files are written. | | ETSI_CACHE_DIR | ./cache | Where downloaded PDFs are cached. |

Example usage

Once registered, Claude can use the tools directly. You can also prompt it explicitly:

"Ingest ETSI TS 103 720 and tell me what video codec profiles are mandatory."

"Using the summary for TS 102 818, write a valid XML service information document."

"What standards does TS 102 818 normatively reference that haven't been ingested yet?"

Project structure

claude-etsi-connector/
├── src/
│   ├── server.ts       # MCP server — tool and resource registration
│   ├── fetcher.ts      # ETSI search API + PDF download
│   ├── parser.ts       # PDF text extraction
│   ├── summariser.ts   # Claude API call → standards/<id>.md
│   └── config.ts       # Paths and model constants
├── prompts/
│   └── summarise.md    # Summarisation prompt template
├── standards/          # Generated summaries (committed to git)
├── cache/              # Downloaded PDFs (git-ignored)
└── dist/               # Compiled output (git-ignored)

Known limitations

  • Summarisation calls claude-opus-4-6 and may take 30–90 seconds for a long specification.
  • Very large documents (>150,000 characters of extracted text, roughly 300+ pages) are truncated. The summary will note where truncation occurred.
  • PDF text extraction quality depends on how the PDF was produced. Scanned or image-based PDFs will yield poor results.
  • The ETSI search API does not reliably flag superseded versions; the connector always takes the first (most recent) result.

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Browser & Scraping servers.