Token导航 LogoToken导航TokenDH.com
Chunky MCP logo
运维云端未说明官方级别未说明来源级核验

Chunky MCP

MCP Server

一个MCP服务器,用于处理和读取大响应数据的分块。

工具数

0

提示词数

0

GitHub Stars

4

资源数

0
Python本地部署云端部署

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

作者 / 组织

ebwinters

提供方

ebwinters

最后核验

2026/5/17 20:22

快速接入

先看主来源和安装命令,再打开仓库或文档;下面只保留这个条目的关键接入事实。

详细介绍

矮胖的mcp

用于处理分块和读取大型响应的MCP服务器

之前:

before

之后:

after![](images/after2.png)

快速安装

使用Pip

克隆

  1. git clone https://github.com/ebwinters/chunky-mcp.git
  2. cd chunky-mcp
  3. pip install -e .

用法

在工具中导入助手:

from chunky_mcp_utils import handle_large_response

@mcp.tool()
def my_tool() -> list[types.TextContent]:
    """
    Gets a list of all the employees in the system from the database
    """
    # Call might give a large JSON response
    response = requests.get("https://someblob.com")
    response_data = response.json()
    
    # Chunker handles the large response and calls following read chunk tools
    return handle_large_response(
        response_data,
        my_tool.__name__,
        _chunker
    )

添加MCP条目

"chunky": {
    "type": "stdio",
    "command": "chunky-mcp",
    "args": []
}

开发人员设置

  1. 安装 uv
  2. uv venv
  3. .\.venv\Scripts\activate
  4. uv sync

目录标签

目录标签

Python本地部署云端部署MCP服务器分块处理大数据处理响应优化

接入字段

传输方式(transport,传输协议)

未说明

鉴权方式(authType,认证方式)

none

工具数量(toolCount,工具数)

0

资源数量(resourceCount,资源数)

0

提示词数量(promptCount,提示词数)

0

权限和风险

未说明none部署方式未说明

接入前请确认传输方式、认证方式和部署位置,并根据实际工具能力限制访问范围。

安装前确认

不要直接授予不必要的文件、网络或账号权限;先核对安装命令和配置内容。

仍需确认:installCommand

来源信息

继续浏览同类 MCP