Flexible Key-Value Extracting MCP Server

Flexible Key-Value Extracting MCP Server

Extracts structured key-value pairs from arbitrary, noisy, or unstructured text using LLMs and provides output in multiple formats (JSON, YAML, TOML) with type safety.

Category
访问服务器

README

Flexible Key-Value Extracting MCP Server

smithery badge

Version: 0.3.1

This MCP server extracts key-value pairs from arbitrary, noisy, or unstructured text using LLMs (GPT-4.1-mini) and pydantic-ai. It ensures type safety and supports multiple output formats (JSON, YAML, TOML). The server is robust to any input and always attempts to structure data as much as possible, however, perfect extraction is not guaranteed.


🤔💡 Why Use This MCP Server?

While many Large Language Model (LLMs) services offer structured output capabilities, this MCP server provides distinct advantages for key-value extraction, especially from challenging real-world text:

  • 🔑🔍 Automatic Key Discovery: A core strength is its ability to autonomously identify and extract relevant key-value pairs from unstructured text without requiring pre-defined keys. While typical LLM structured outputs need you to specify the keys you're looking for, this server discovers them, making it highly effective for diverse and unpredictable data where the structure is not known beforehand.
  • 💪🧱 Superior Robustness for Complex Inputs: It excels with arbitrary, noisy, or unstructured text where standard LLM structured outputs might falter. The multi-step pipeline is specifically designed to sift through and make sense of imperfect data.
  • 🌐🗣️ Advanced Multi-Lingual Preprocessing: Before LLM processing, it leverages spaCy for Named Entity Recognition (NER) in Japanese, English, and Chinese (Simplified/Traditional), significantly enhancing extraction accuracy for these languages by providing context-rich candidate phrases.
  • 🔄✍️ Iterative Refinement and Typing: Unlike a single-pass extraction, this server employs a sophisticated pipeline including LLM-based type annotation, LLM-based type evaluation, and rule-based/LLM-fallback normalization. This ensures more accurate and contextually appropriate data types.
  • ✅🛡️ Guaranteed Type Safety and Schema Adherence: Final structuring with Pydantic ensures that the output is not only structured but also type-safe and validated against a defined schema, providing reliable data for downstream applications.
  • 📊⚙️ Consistent and Predictable Output: The server is designed to always return a well-formed response, even if extraction is partial or encounters issues, which is critical for building robust automated systems.

Release Notes

v0.3.1

  • Update: Improve type evaluation prompt for robust correction.
  • Update: Added the strong point of this MCP server on README.md

v0.2.0

  • Fix: Lang code for zh-cn / zh-tw.

v0.1.0

  • Initial release

Tools

  • /extract_json : Extracts type-safe key-value pairs in JSON format from input text.
  • /extract_yaml : Extracts type-safe key-value pairs in YAML format from input text.
  • /extract_toml : Extracts type-safe key-value pairs in TOML format from input text.
    • Note: Due to TOML specifications, arrays of objects (dicts) or deeply nested structures cannot be directly represented. See "Note on TOML Output Limitations" below for details.

Note:

  • Supported languages: Japanese, English, and Chinese (Simplified: zh-cn / Traditional: zh-tw).
  • Extraction relies on pydantic-ai and LLMs. Perfect extraction is not guaranteed.
  • Longer input sentences will take more time to process. Please be patient.
  • On first launch, the server will download spaCy models, so the process will take longer initially.

Estimated Processing Time Sample

Input Tokens Input Characters (approx.) Measured Processing Time (sec) Model Configuration
200 ~400 ~15 gpt-4.1-mini

Actual processing time may vary significantly depending on API response, network conditions, and model load. Even short texts may take 15 seconds or more.

Features

  • Flexible extraction: Handles any input, including noisy or broken data.
  • JP / EN / ZH-CN / ZH-TW full support: Preprocessing with spaCy NER by automatic language detection (Japanese, English, Chinese [Simplified: zh-cn / Traditional: zh-tw] supported; others are rejected with error).
  • Type-safe output: Uses Pydantic for output validation.
  • Multiple formats: Returns results as JSON, YAML, or TOML.
  • Robust error handling: Always returns a well-formed response, even on failure.
  • High accuracy: Uses GPT-4.1-mini for both extraction/annotation and type evaluation, with Pydantic for final structuring.

Tested Scenarios

The server has been tested with various inputs, including:

  • Simple key-value pairs
  • Noisy or unstructured text with important information buried within
  • Different data formats (JSON, YAML, TOML) for output

Processing Flow

Below is a flowchart representing the processing flow of the key-value extraction pipeline as implemented in server.py:

flowchart TD
    A[Input Text] --> B[Step 0: Preprocessing with spaCy Lang Detect then NER]
    B --> C[Step 1: Key-Value Extraction - LLM]
    C --> D[Step 2: Type Annotation - LLM]
    D --> E[Step 3: Type Evaluation - LLM]
    E --> F[Step 4: Type Normalization - Static Rules + LLM]
    F --> G[Step 5: Final Structuring with Pydantic]
    G --> H[Output in JSON/YAML/TOML]

Preprocessing with spaCy (Multilingual NER)

This server uses spaCy with automatic language detection to extract named entities from the input text before passing it to the LLM. Supported languages are Japanese (ja_core_news_md), English (en_core_web_sm), and Chinese (Simplified/Traditional, zh_core_web_sm).

  • The language of the input text is automatically detected using langdetect.

  • If the detected language is not Japanese, English, or Chinese, the server returns an error: Unsupported lang detected.

  • The appropriate spaCy model is automatically downloaded and loaded as needed. No manual installation is required.

  • The extracted phrase list is included in the LLM prompt as follows:

    [Preprocessing Candidate Phrases (spaCy NER)] The following is a list of phrases automatically extracted from the input text using spaCy's detected language model. These phrases represent detected entities such as names, dates, organizations, locations, numbers, etc. This list is for reference only and may contain irrelevant or incorrect items. The LLM uses its own judgment and considers the entire input text to flexibly infer the most appropriate key-value pairs.

Step Details

This project's key-value extraction pipeline consists of multiple steps. Each step's details are as follows:

Step 0: Preprocessing with spaCy (Language Detection → Named Entity Recognition)

  • Purpose: Automatically detect the language of the input text and use the appropriate spaCy model (e.g., ja_core_news_md, en_core_web_sm, zh_core_web_sm) to extract named entities.
  • Output: The extracted phrase list, which is included in the LLM prompt as a hint to improve key-value pair extraction accuracy.

Step 1: Key-Value Extraction (LLM)

  • Purpose: Use GPT-4.1-mini to extract key-value pairs from the input text and the extracted phrase list.
  • Details:
    • The prompt includes instructions to return list-formatted values when the same key appears multiple times.
    • Few-shot examples are designed to include list-formatted outputs.
  • Output: Example: key: person, value: ["Tanaka", "Sato"]

Step 2: Type Annotation (LLM)

  • Purpose: Use GPT-4.1-mini to infer the data type (int, str, bool, list, etc.) of each key-value pair extracted in Step 1.
  • Details:
    • The type annotation prompt includes instructions for list and multiple value support.
  • Output: Example: key: person, value: ["Tanaka", "Sato"] -> list[str]

Step 3: Type Evaluation (LLM)

  • Purpose: Use GPT-4.1-mini to evaluate and correct the type annotations from Step 2.
  • Details:
    • For each key-value pair, GPT-4.1-mini re-evaluates the type annotation's validity and context.
    • If type errors or ambiguities are detected, GPT-4.1-mini automatically corrects or supplements the type.
    • Example: Correcting a value extracted as a number but should be a string, or determining whether a value is a list or a single value.
  • Output: The type-evaluated key-value pair list.

Step 4: Type Normalization (Static Rules + LLM Fallback)

  • Purpose: Convert the type-evaluated data into Python's standard types (int, float, bool, str, list, None, etc.).
  • Details:
    • Apply static normalization rules (regular expressions or type conversion functions) to convert values into Python's standard types.
    • Example: Converting comma-separated values to lists, "true"/"false" to bool, or date expressions to standard formats.
    • If static rules cannot convert a value, use LLM-based type conversion fallback.
    • Unconvertible values are safely handled as None or str.
  • Output: The Python-type-normalized key-value pair list.

Step 5: Final Structuring with Pydantic

  • Purpose: Validate and structure the type-normalized data using Pydantic models (KVOut/KVPayload).
  • Details:
    • Map each key-value pair to Pydantic models, ensuring type safety and data integrity.
    • Validate single values, lists, null, and composite types according to the schema.
    • If validation fails, attach error information while preserving as much data as possible.
    • The final output is returned in the specified format (JSON, YAML, or TOML).
  • Output: The type-safe and validated dict or specified format (JSON/YAML/TOML) output.

This pipeline is designed to accommodate future list format support and Pydantic schema extensions.

Note on TOML Output Limitations

  • In TOML, simple arrays (e.g., items = ["A", "B"]) can be represented natively, but arrays of objects (dicts) or deeply nested structures cannot be directly represented due to TOML specifications.
  • Therefore, complex lists or nested structures (e.g., [{"name": "A"}, {"name": "B"}]) are stored as "JSON strings" in TOML values.
  • This is a design choice to prevent information loss due to TOML's specification limitations.
  • YAML and JSON formats can represent nested structures as-is.

Example Input/Output

Input:

Thank you for your order (Order Number: ORD-98765). Product: High-Performance Laptop, Price: 89,800 JPY (tax excluded), Delivery: May 15-17. Shipping address: 1-2-3 Shinjuku, Shinjuku-ku, Tokyo, Apartment 101. Phone: 090-1234-5678. Payment: Credit Card (VISA, last 4 digits: 1234). For changes, contact support@example.com.

Output (JSON):

{
  "order_number": "ORD-98765",
  "product_name": "High-Performance Laptop",
  "price": 89800,
  "price_currency": "JPY",
  "tax_excluded": true,
  "delivery_start_date": "20240515",
  "delivery_end_date": "20240517",
  "shipping_address": "1-2-3 Shinjuku, Shinjuku-ku, Tokyo, Apartment 101",
  "phone_number": "090-1234-5678",
  "payment_method": "Credit Card",
  "card_type": "VISA",
  "card_last4": "1234",
  "customer_support_email": "support@example.com"
}

Output (YAML):

order_number: ORD-98765
product_name: High-Performance Laptop
price: 89800
price_currency: JPY
tax_excluded: true
delivery_start_date: '20240515'
delivery_end_date: '20240517'
shipping_address: 1-2-3 Shinjuku, Shinjuku-ku, Tokyo, Apartment 101
phone_number: 090-1234-5678
payment_method: Credit Card
card_type: VISA
card_last4: '1234'
customer_support_email: support@example.com

Output (TOML, simple case):

order_number = "ORD-98765"
product_name = "High-Performance Laptop"
price = 89800
price_currency = "JPY"
tax_excluded = true
delivery_start_date = "20240515"
delivery_end_date = "20240517"
shipping_address = "1-2-3 Shinjuku, Shinjuku-ku, Tokyo, Apartment 101"
phone_number = "090-1234-5678"
payment_method = "Credit Card"
card_type = "VISA"
card_last4 = "1234"

Output (TOML, complex case):

items = '[{"name": "A", "qty": 2}, {"name": "B", "qty": 5}]'
addresses = '[{"city": "Tokyo", "zip": "160-0022"}, {"city": "Osaka", "zip": "530-0001"}]'

Note: Arrays of objects or nested structures are stored as JSON strings in TOML.

Tools

1. extract_json

  • Description: Extracts key-value pairs from arbitrary noisy text and returns them as type-safe JSON (Python dict).
  • Arguments:
    • input_text (string): Input string containing noisy or unstructured data.
  • Returns: { "success": True, "result": ... } or { "success": False, "error": ... }
  • Example:
    {
      "success": true,
      "result": { "foo": 1, "bar": "baz" }
    }
    

2. extract_yaml

  • Description: Extracts key-value pairs from arbitrary noisy text and returns them as type-safe YAML (string).
  • Arguments:
    • input_text (string): Input string containing noisy or unstructured data.
  • Returns: { "success": True, "result": ... } or { "success": False, "error": ... }
  • Example:
    {
      "success": true,
      "result": "foo: 1\nbar: baz"
    }
    

3. extract_toml

  • Description: Extracts key-value pairs from arbitrary noisy text and returns them as type-safe TOML (string).
  • Arguments:
    • input_text (string): Input string containing noisy or unstructured data.
  • Returns: { "success": True, "result": ... } or { "success": False, "error": ... }
  • Example:
    {
      "success": true,
      "result": "foo = 1\nbar = \"baz\""
    }
    

Usage

Installing via Smithery

To install kv-extractor-mcp-server for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install @KunihiroS/kv-extractor-mcp-server --client claude

Requirements

  • Python 3.9+
  • API key for OpenAI models (set in settings.json under env)

Running the Server

python server.py

In case you want to run the server manually.

MCP Host Configuration

When running this MCP Server, you must explicitly specify the log output mode and (if enabled) the absolute log file path via command-line arguments.

  • --log=off : Disable all logging (no logs are written)
  • --log=on --logfile=/absolute/path/to/logfile.log : Enable logging and write logs to the specified absolute file path
  • Both arguments are required when logging is enabled. The server will exit with an error if either is missing, the path is not absolute, or if invalid values are given.

Example: Logging Disabled

"kv-extractor-mcp-server": {
  "command": "pipx",
  "args": ["run", "kv-extractor-mcp-server", "--log=off"],
  "env": {
    "OPENAI_API_KEY": "{apikey}"
  }
}

Example: Logging Enabled (absolute log file path required)

"kv-extractor-mcp-server": {
  "command": "pipx",
  "args": ["run", "kv-extractor-mcp-server", "--log=on", "--logfile=/workspace/logs/kv-extractor-mcp-server.log"],
  "env": {
    "OPENAI_API_KEY": "{apikey}"
  }
}

Note:

  • When logging is enabled, logs are written only to the specified absolute file path. Relative paths or omission of --logfile will cause an error.
  • When logging is disabled, no logs are output.
  • If the required arguments are missing or invalid, the server will not start and will print an error message.
  • The log file must be accessible and writable by the MCP Server process.
  • If you have trouble to run this server, it may be due to caching older version of kv-extractor-mcp-server. Please try to run it with the latest version (set x.y.z to the latest version) of kv-extractor-mcp-server by the below setting.
"kv-extractor-mcp-server": {
  "command": "pipx",
  "args": ["run", "kv-extractor-mcp-server==x.y.z", "--log=off"],
  "env": {
    "OPENAI_API_KEY": "{apikey}"
  }
}

License

GPL-3.0-or-later

Author

KunihiroS (and contributors)

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选