Skip to main content
Glama

diffchunk

CI PyPI version Python 3.10+ License: MIT uv

MCP-сервер, который позволяет LLM эффективно перемещаться по большим файлам diff. Вместо последовательного чтения всего diff, LLM могут переходить непосредственно к нужным изменениям, используя навигацию на основе шаблонов.

Проблема

Большие diff превышают лимиты контекста LLM и расходуют токены на нерелевантные изменения. Diff размером более 50 тыс. строк невозможно обработать напрямую, а ручное разделение приводит к потере связей между файлами.

Related MCP server: Large File MCP Server

Решение

MCP-сервер с 5 инструментами навигации:

  • load_diff — разбор файла diff с пользовательскими настройками (опционально)

  • list_chunks — обзор фрагментов с сопоставлением файлов и подсчетом строк для каждого файла (автозагрузка)

  • get_chunk — получение содержимого конкретного фрагмента (автозагрузка)

  • find_chunks_for_files — поиск фрагментов по шаблонам имен файлов (автозагрузка)

  • get_file_diff — извлечение полного diff для одного файла (автозагрузка)

Установка

Предварительное требование: Установите uv (чрезвычайно быстрый менеджер пакетов Python), который предоставляет команду uvx.

Добавьте в конфигурацию вашего MCP-клиента:

{
  "mcpServers": {
    "diffchunk": {
      "command": "uvx",
      "args": ["--from", "diffchunk", "diffchunk-mcp"]
    }
  }
}

Использование

Ваш ИИ-ассистент теперь может обрабатывать массивные наборы изменений, которые ранее приводили к сбоям в Cline, Roocode, Cursor и других инструментах.

Использование с ИИ-ассистентом

После настройки ваш ИИ-ассистент сможет анализировать большие коммиты, ветки или diff с помощью diffchunk.

Вот несколько примеров использования:

Сравнение веток:

  • "Проверь все изменения в develop, которых нет в основной ветке, на наличие ошибок"

  • "Расскажи мне обо всех изменениях, которые я еще не объединил"

  • "Какие новые функции были добавлены в ветку staging?"

  • "Обобщи все изменения в этом репозитории за последние 2 недели"

Код-ревью:

  • "Используй diffchunk, чтобы проверить мою ветку с функциями на наличие уязвимостей безопасности"

  • "Используй diffchunk, чтобы найти любые критические изменения перед слиянием с продакшеном"

  • "Используй diffchunk, чтобы просмотреть этот крупный рефакторинг на предмет потенциальных проблем"

Анализ изменений:

  • "Используй diffchunk, чтобы показать мне все миграции базы данных, которые необходимо выполнить"

  • "Используй diffchunk, чтобы найти, какие изменения API могут повлиять на наше мобильное приложение"

  • "Используй diffchunk, чтобы проанализировать все новые зависимости, добавленные недавно"

Прямой анализ файлов:

  • "Используй diffchunk, чтобы проанализировать diff в /tmp/changes.diff и найти ошибки"

  • "Создай diff моих незакоммиченных изменений и проанализируй его"

  • "Сравни мою локальную ветку с origin и выдели конфликты"

Совет: Правила для ИИ-ассистента

Добавьте в пользовательские инструкции вашего ИИ-ассистента для автоматического использования:

When reviewing large changesets or git commits, use diffchunk to handle large diff files.
Create temporary diff files and tracking files as needed and clean up after analysis.

Как это работает

Когда вы просите ИИ-ассистента проанализировать изменения, он стратегически использует инструменты diffchunk:

  1. Создает файл diff (например, git diff main..develop > /tmp/changes.diff) на основе вашего вопроса

  2. Использует list_chunks, чтобы получить обзор структуры diff и общего объема, включая количество строк для каждого файла через file_details

  3. Использует find_chunks_for_files, чтобы найти соответствующие разделы, когда вы спрашиваете о конкретных типах файлов

  4. Использует get_file_diff, чтобы получить полный diff для одного конкретного файла без загрузки всего фрагмента

  5. Использует get_chunk, чтобы изучить конкретные разделы без загрузки всего diff в контекст

  6. Систематически отслеживает прогресс по большим наборам изменений, анализируя фрагмент за фрагментом

  7. Удаляет временные файлы после завершения анализа

Это позволяет вашему ИИ-ассистенту обрабатывать массивные diff, которые обычно приводили бы к сбою других инструментов, обеспечивая при этом тщательный анализ без потери контекста.

Шаблоны использования инструментов

Сначала обзор:

list_chunks("/tmp/changes.diff")
# -> 5 chunks across 12 files, 3,847 total lines, ~15,420 tokens
# Each chunk includes token_count and file_details with per-file line counts
# Response includes total_token_count for context-budget planning

Целевые файлы:

find_chunks_for_files("/tmp/changes.diff", "*.py")
# → [1, 3, 5] - Python file chunks

get_chunk("/tmp/changes.diff", 1)
# → Content of first Python chunk

Diff одного файла:

get_file_diff("/tmp/changes.diff", "src/main.py")
# → Complete diff for src/main.py (header + all hunks)

# Glob patterns work when they match exactly one file
get_file_diff("/tmp/changes.diff", "*.config")
# → Complete diff for the single matching config file

Систематический анализ:

# Process each chunk in sequence
get_chunk("/tmp/changes.diff", 1)
get_chunk("/tmp/changes.diff", 2)
# ... continue through all chunks

Конфигурация

Требования к путям

  • Только абсолютные пути: /home/user/project/changes.diff

  • Кроссплатформенность: Windows (C:\path) и Unix (/path)

  • Раскрытие домашней директории: ~/project/changes.diff

Настройки автозагрузки по умолчанию

Инструменты автоматически загружаются с оптимизированными настройками:

  • max_chunk_lines: 1000

  • skip_trivial: true (только пробелы)

  • skip_generated: true (lock-файлы, артефакты сборки)

Пользовательские настройки

Используйте load_diff для поведения, отличного от стандартного:

load_diff(
    "/tmp/large.diff",
    max_chunk_lines=2000,
    include_patterns="*.py,*.js",
    exclude_patterns="*test*",
    context_lines=2
)

Параметры формата

Используйте параметр format в get_chunk для преобразования вывода для LLM:

# Default - raw diff output
get_chunk("/tmp/changes.diff", 1, format="raw")

# Annotated - structured with line numbers, file headers, hunk separation
get_chunk("/tmp/changes.diff", 1, format="annotated")

# Compact - token-efficient, only new hunks (context + added lines)
get_chunk("/tmp/changes.diff", 1, format="compact")

Аннотированный формат добавляет заголовки ## File:, разделы __new hunk__/__old hunk__ с номерами строк нового файла и контекст функции из заголовков @@.

Компактный формат показывает только то, что было добавлено или сохранено, полностью опуская удаленные строки и разделы __old hunk__. Полезно, когда вам нужно увидеть только конечное состояние.

Уменьшение контекста

Используйте context_lines в load_diff, чтобы уменьшить количество строк контекста для каждого фрагмента при загрузке:

# Keep only 2 lines of context around each change
load_diff("/tmp/large.diff", context_lines=2)

# Keep only changes, no context
load_diff("/tmp/large.diff", context_lines=0)

Это работает совместно с format — контекст уменьшается при загрузке, а затем форматирование применяется при отображении.

Поддерживаемые форматы

  • Вывод Git diff (git diff, git show)

  • Формат Unified diff (diff -u)

  • Несколько файлов в одном diff

  • Индикаторы изменений бинарных файлов

Производительность

  • Эффективная обработка diff объемом более 100 тыс. строк

  • Потоковая передача с низким потреблением памяти

  • Автоматическая перезагрузка при изменении файлов

Документация

  • Дизайн — архитектура и детали реализации

  • Вклад — рекомендации по внесению вклада и настройка разработки

Лицензия

MIT

Available Tools

5 tools
find_chunks_for_filesA
Read-only

Locate chunks containing files that match a specific glob pattern. Auto-loads the diff file if not already loaded. Essential for targeted analysis when you need to focus on specific file types, directories, or naming patterns (e.g., '.py' for Python files, 'test' for test files, 'src/' for source directory). Returns chunk numbers which you then examine using get_chunk. CRITICAL: You must use an absolute directory path - relative paths will fail. DO NOT attempt direct file reading. Use this for efficient navigation to relevant changes instead of processing entire large diffs sequentially.

ParametersJSON Schema
NameRequiredDescriptionDefault
patternYesGlob pattern to match file paths (e.g., '*.py', '*test*', 'src/*')
absolute_file_pathYesAbsolute path to the diff file

TDQS

A5/5.0
Behavior5/5

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

Beyond readOnlyHint=true annotation, description reveals auto-loading behavior and that output is chunk numbers. Warns about relative path failure. No contradictions.

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?

5 sentences, front-loaded with purpose, each sentence adds unique value (purpose, auto-load, use case, examples, critical warnings). No redundancy.

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 2 required parameters and no output schema, description covers all essential aspects: purpose, behavior, constraints, and next step (use get_chunk). Siblings listed for context.

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

Parameters5/5

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

Schema covers 100% parameters, but description adds valuable context: pattern examples ('*.py'), and reiterates absolute path requirement with rationale.

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?

Clear verb+resource: 'Locate chunks containing files' with specific glob pattern. Distinguishes from siblings like get_chunk and list_chunks by focusing on file-pattern based searching.

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 states when to use (targeted analysis instead of processing entire diffs), critical constraints (absolute path required, no direct file reading), and alternatives relative to sibling tools.

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

get_chunkA
Read-only

Retrieve the actual content of a specific numbered chunk from a diff file. Auto-loads the diff file if not already loaded. Use this for systematic analysis of changes chunk-by-chunk, or to examine specific chunks identified via list_chunks or find_chunks_for_files. CRITICAL: You must use an absolute directory path - relative paths will fail. DO NOT read diff files directly - they exceed LLM context windows. This tool provides manageable portions of large diffs. Track your progress through chunks when doing comprehensive analysis and clean up tracking documents before final results.

ParametersJSON Schema
NameRequiredDescriptionDefault
formatNoOutput format: 'raw' (default, standard diff), 'annotated' (line numbers, new/old hunk separation), 'compact' (line numbers, new hunks only)raw
chunk_numberYesThe chunk number to retrieve (1-indexed)
include_contextNoInclude chunk header with metadata
absolute_file_pathYesAbsolute path to the diff file

TDQS

A4.4/5.0
Behavior4/5

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

Annotations declare readOnlyHint=true, and the description adds that it auto-loads the diff file if not loaded and that it provides manageable portions. It correctly notes the absolute path requirement. No contradictions.

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?

The description is somewhat lengthy but every sentence adds value: purpose, usage, critical requirement, behavioral note, and progress tracking advice. Well-structured but could be slightly more concise.

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?

Despite no output schema, the description covers all essential aspects: what the tool does, when to use it, critical requirements (absolute path), behavioral traits (auto-loading, manageable portions), and guidance for comprehensive analysis. No gaps identified.

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 coverage is 100% with descriptions for each parameter, so baseline is 3. The description adds the critical constraint that 'absolute_file_path' must be an absolute path, which is not in the schema. It also implies chunk_number is 1-indexed. Adds meaningful value beyond schema.

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 retrieves content of a specific chunk from a diff file. It distinguishes from siblings by mentioning it is for individual chunks identified via list_chunks or find_chunks_for_files, and explicitly warns against reading diff files directly.

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 clear when-to-use scenarios: systematic chunk-by-chunk analysis or examining specific chunks. Includes a critical note about absolute paths and a 'DO NOT' instruction for reading diff files directly. Slightly less explicit about alternatives but gives good context.

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

get_file_diffA
Read-only

Extract the complete diff for a single file from a loaded diff. Returns the diff --git header and all hunks for that file. Use this when you need changes for one specific file without fetching the entire chunk. Auto-loads the diff file if not already loaded. Supports exact file paths or glob patterns that match exactly one file. Use list_chunks with file_details to see per-file line counts and decide whether to use this tool or get_chunk. CRITICAL: You must use an absolute directory path - relative paths will fail.

ParametersJSON Schema
NameRequiredDescriptionDefault
file_pathYesExact file path or glob pattern matching a single file within the diff (e.g., 'src/main.py', '*.config')
absolute_file_pathYesAbsolute path to the diff file

TDQS

A4.9/5.0
Behavior5/5

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

Beyond the readOnlyHint annotation, the description discloses auto-loading behavior and path requirement. No contradictions with 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?

Every sentence serves a purpose: purpose, usage guidance, behavioral note, error condition. Concise and front-loaded with essential information.

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 no output schema, the description explains return value. With good annotations and clear parameter semantics, it provides complete contextual information for correct usage.

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 with descriptions, but the tool description adds valuable context: file_path can be exact path or glob, and absolute_file_path must be absolute. Adds nuance beyond schema.

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 action ('extract'), the resource ('complete diff for a single file'), and the output ('diff --git header and all hunks'). It distinguishes from sibling tools like get_chunk and list_chunks.

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 tells when to use ('when you need changes for one specific file'), references sibling tools for decision-making ('Use list_chunks... decide whether to use this tool or get_chunk'), and includes a critical requirement ('absolute directory path - relative paths will fail').

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

list_chunksA
Read-only

Get an overview of all chunks in a diff file with file mappings and summaries. Auto-loads the diff file with optimal defaults if not already loaded. Use this as your first step to understand the scope and structure of changes before diving into specific chunks. CRITICAL: You must use an absolute directory path - relative paths will fail. DO NOT attempt to read the diff file directly as it will exceed context limits. This tool provides the roadmap for systematic chunk-by-chunk analysis. If using tracking documents to resume analysis, use this to orient yourself to remaining work. Each chunk includes a token_count estimate, and the response includes total_token_count for context-budget planning.

ParametersJSON Schema
NameRequiredDescriptionDefault
absolute_file_pathYesAbsolute path to the diff file

TDQS

A4.7/5.0
Behavior4/5

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

Annotations already mark it as readOnlyHint=true. Description adds behavior: 'Auto-loads the diff file with optimal defaults if not already loaded' and mentions response includes 'total_token_count'. Does not contradict annotations. Could mention error behavior if file not found, but still adds significant context.

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?

Description is packed with useful information and front-loaded with purpose. While every sentence adds value, it is slightly verbose. Could be tightened but still clear and efficient.

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?

Despite having only one parameter and no output schema, the description covers all needed context: purpose, usage guidelines, critical requirements, and expected response (file mappings, summaries, token counts). No gaps identified.

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

Parameters5/5

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

Schema coverage is 100% with one parameter. The description adds critical semantic info beyond the schema: 'You must use an absolute directory path - relative paths will fail.' This ensures correct usage.

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's purpose: 'Get an overview of all chunks in a diff file with file mappings and summaries.' It distinguishes itself from siblings like 'get_chunk' by positioning itself as the first step for understanding scope and structure.

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 guides when to use: 'Use this as your first step' and 'If using tracking documents to resume analysis, use this to orient yourself.' Also provides critical warnings: absolute path required, do not read diff file directly. Includes alternatives implicitly by describing the tool's role.

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

load_diffA
Read-only

Parse and load a diff file with custom chunking settings. Use this tool ONLY when you need non-default settings (custom chunk sizes, filtering patterns). Otherwise, use list_chunks, get_chunk, or find_chunks_for_files which auto-load with optimal defaults. CRITICAL: You must use an absolute directory path - relative paths will fail. The diff file will be too large for direct reading, so you MUST use diffchunk tools for navigation. When using tracking documents for analysis, remember to clean up tracking state before presenting final results. The response includes a files_excluded count showing how many files were removed by exclude_patterns.

ParametersJSON Schema
NameRequiredDescriptionDefault
skip_trivialNoSkip whitespace-only changes
context_linesNoNumber of context lines around each change (default: keep all from diff file)
skip_generatedNoSkip generated files and build artifacts
max_chunk_linesNoMaximum lines per chunk
exclude_patternsNoComma-separated glob patterns for files to exclude
include_patternsNoComma-separated glob patterns for files to include
absolute_file_pathYesAbsolute path to the diff file to load

TDQS

A4.5/5.0
Behavior4/5

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

Annotations indicate readOnlyHint=true, consistent with description. Description adds behavioral context: absolute path, file size limitation, and need to clean tracking state. However, does not detail error handling or response content.

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?

Description is concise, front-loads purpose, and contains no redundant text. Slightly verbose with multiple sentences but still efficient.

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 7 parameters well-described in schema and text, no output schema, the description provides sufficient context for usage, warnings, and behavioral notes. Missing some details on return values, but overall adequate.

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 coverage is 100%, baseline 3. Description adds extra meaning for parameters (e.g., 'whitespace-only changes' for skip_trivial, 'build artifacts' for skip_generated, 'comma-separated glob patterns' for exclude/include), justifying higher score.

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 verb (parse/load) and resource (diff file), and distinguishes from siblings by specifying it is for non-default chunking settings.

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 says when to use (custom settings) and when not to (use siblings for defaults). Provides critical warnings: absolute path required, file too large, cleanup of tracking state.

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. 5 tool updatesv0.1.5
    • Addedfind_chunks_for_files
    • Addedget_chunk
    • Addedget_file_diff
    • Addedlist_chunks
    • Addedload_diff
  2. 4 tool updatesv0.1.0
    • Removedfind_chunks_for_files
    • Removedget_chunk
    • Removedlist_chunks
    • Removedload_diff
  3. 4 tool updatesv0.1.7
    • First observedfind_chunks_for_files
    • First observedget_chunk
    • First observedlist_chunks
    • First observedload_diff

TDQS

A4.7/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: loading, listing, chunk retrieval, file-pattern search, and full file diff. No overlap or ambiguity.

Naming Consistency5/5

All tool names follow the consistent snake_case verb_noun pattern (e.g., load_diff, list_chunks). Predictable and clear.

Tool Count5/5

5 tools is well-scoped for a diff chunking server. Each tool serves a necessary function without being superfluous.

Completeness5/5

The toolset covers loading, listing, searching, and retrieving diff content. No obvious missing operations for the domain.

Maintenance

ActivityMaintained
ResponsivenessUnresponsive

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

  • A
    license
    B
    quality
    D
    maintenance
    Enables pattern-based file editing operations using copy/paste functionality with text landmarks instead of exact string matching. Allows AI agents to efficiently manipulate file content by identifying code patterns and insertion points without consuming large amounts of context tokens.
    1
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    Reduces token consumption by over 80% through intelligent file caching, returning only diffs for modified files and suppressing unchanged content. It features a suite of 12 tools for semantic search, batch reading, and efficient file editing to optimize LLM interactions with large codebases.
    13
    2
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    Provides file caching and diff tracking for AI coding agents, reducing token usage by returning changes or confirming no changes instead of full file contents on repeated reads.
    66
    218
    MIT

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/peteretelej/diffchunk'

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