DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Xby Csv2json — DSH Plugin for DeepSeek Harness
← Plugins
X

xby-csv2json

Xby Csv2json

An MCP server based on FastMCP for converting CSV to JSON, providing efficient CSV data conversion services.

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add github:xby-skill/xby-csv2json#e0f47f68fd4e4ba5b756dea35613d8840bd2e08c
READMECompatibilityVersions

Compatibility and provenance

Xby Csv2json is published as xby-csv2json and currently resolves to version 1.0.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
github
Registry updated
8/28/2026

Versions

1.0.0stable
8/28/2026

Related plugins

Loading related plugins…

Latest
1.0.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
any
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
9/2/2026
View source ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in

Related plugins

More verified plugins in productivity-workflow.

Acp App@deepseek-ai/dsh-acp-appThe dsh ACP profile bundle: automation-only JSON-RPC stdio and process lifecycle over dsh-baseWeb All@linxin666/dsh-web-allDSH Web UI 全家桶聚合插件:一键安装全部功能插件(task-board / git-graph / pet / remote-web-ui / web-ui-settings / skin-center / community-plugins / compat shim)。compat 桥接层已并入本包(src/client),无需独立 compat npm 包。Codex Ui@michengai/dsh-codex-uiDSH Codex UI — 为 DeepSeek Harness Web 提供 Codex 风格侧栏、工作区会话树、全局搜索和轮次导航 · A Codex-style sidebar, workspace session tree, global search, and turn navigation for DSH WebAutomation@michengai/dsh-automationExecute coding tasks on a schedule in an independent DSH Session, with dual-entry management via a Web settings page and Agent.

README

xby-csv2json

DeepSeek Harness (DSH) 的插件:CSV转JSON转换器

一个基于FastMCP的CSV到JSON转换MCP服务器,提供高效的CSV数据转换服务。

功能

  • set_xby_apikey — 在聊天中设置 API 密钥(自动持久化,重启有效)
  • get_csv_info — 获取 CSV 文件的基本信息,用于辅助转换操作。

Args: file_path: CSV 文件路径,必须是有效的文件路径

Returns: 包含 CSV 文件信息的字典,结构为: { "success": bool, # 操作是否成功 "file_info": Dict[str, Any], # 文件详细信息 "message": str # 操作结果消息 }

文件信息包含以下字段:
- file_size: 文件大小(字节)
- row_count: 行数(估算值)
- column_count: 列数
- columns: 列名列表
- sample_data: 示例数据(前几行)
- file_encoding: 文件编码
- detected_delimiter: 检测到的分隔符

Raises: FileNotFoundError: 当文件路径不存在时 ValueError: 当文件格式错误或读取失败时 Exception: 其他未知错误

  • convert_csv_file — 将 CSV 文件转换为 JSON 文件。

Args: file_path: CSV 文件路径,必须是有效的文件路径 output_file_path: 输出 JSON 文件路径(可选,默认为 CSV 文件同目录下同名 .json 文件) delimiter: CSV 分隔符,默认为逗号(,),可以是制表符( )、分号(;)等 encoding: 文件编码,默认为 utf-8,支持 gbk、gb2312 等常见编码 skip_rows: 跳过的行数,默认为 0,用于跳过文件开头的注释或空行 header: 是否包含表头,默认为 True,如果为 False 则使用列索引作为键名 orient: JSON 输出格式,默认为 "records",可选值: - "records": 每行作为一个字典对象的列表 - "values": 仅包含值的二维数组 - "split": 分开存储列名和数据的格式 indent: JSON 缩进,默认为 None(紧凑格式),可设置为 2 或 4 等值

Returns: 包含转换结果的字典,结构为: { "success": bool, # 转换是否成功 "json_file_path": str, # 生成的 JSON 文件路径 "message": str # 操作结果消息 }

Raises: FileNotFoundError: 当文件路径不存在时 ValueError: 当文件格式错误或转换失败时 Exception: 其他未知错误

  • convert_csv_string — 将 CSV 格式的字符串转换为 JSON 格式。

Args: csv_content: CSV 格式的字符串内容,必须包含有效的 CSV 数据 delimiter: CSV 分隔符,默认为逗号(,),可以是制表符( )、分号(;)等 skip_rows: 跳过的行数,默认为 0,用于跳过字符串开头的注释或空行 header: 是否包含表头,默认为 True,如果为 False 则使用列索引作为键名 orient: JSON 输出格式,默认为 "records",可选值: - "records": 每行作为一个字典对象的列表 - "values": 仅包含值的二维数组 - "index": 包含索引的字典 - "table": 包含 schema 和数据的完整表格格式 - "split": 分开存储列名和数据的格式 indent: JSON 缩进,默认为 None(紧凑格式),可设置为 2 或 4 等值

Returns: 包含转换结果的字典,结构为: { "success": bool, # 转换是否成功 "json": Any, # 转换后的 JSON 数据 "message": str # 操作结果消息 }

Raises: ValueError: 当字符串格式错误或转换失败时 Exception: 其他未知错误

安装

方式一:从 GitHub 直接安装(推荐)

# 格式: dsh plugin --profile <profile> add github:<owner>/<repo>
dsh plugin --profile web add github:xby_skill/xby-csv2json

方式二:从本地目录安装(开发模式)

# 仅用于本地开发调试
dsh plugin --profile web add /absolute/path/to/xby-csv2json

方式三:通过 cordis.patch.yml 开发调试

dsh web --profile web --patch /absolute/path/to/dsh-ocr-plugin/cordis.patch.yml

配置

获取 API 密钥

前往 小笨羊官网 注册并获取 API 密钥。