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

Cdes MCP Server

MCP Server

一个公开的MCP服务器,提供大麻数据交换标准(CDES) v1的JSON模式、参考数据库和验证工具,供AI代理和MCP兼容客户端使用。

工具数

10

提示词数

0

GitHub Stars

0

资源数

0
Python数据验证云端部署

安装说明

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

作者 / 组织

Acidni-LLC

提供方

Acidni-LLC

最后核验

2026/5/17 20:20

快速接入

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

命令预览

pip install -e .

详细介绍

CDES MCP服务器

大麻数据交换标准——模型上下文协议服务器

![License: Apache-2.0](https://opensource.org/licenses/Apache-2.0) ![Python 3.12+](https://www.python.org/downloads/) ![MCP](https://modelcontextprotocol.io)

公开以下内容的公共MCP服务器 大麻数据交换标准(CDES) v1 JSON模式、参考数据库和验证工具,用于AI代理和MCP兼容客户端。

CDES是什么?

大麻数据交换标准 是大麻行业的开源数据标准,提供:

  • 7个JSON模式 --菌株、萜烯图谱、大麻素图谱、萜烯、分析证书(COA)、评级、评级汇总
  • 3个参考数据集 --萜烯库(10种萜烯)、大麻素库(9种大麻素)、萜烯调色板(30种WCAG 2.1 AA颜色)
  • 验证工具 --根据CDES模式验证任何大麻数据对象

快速开始

选项1:使用公共服务器(推荐)

CDES MCP服务器公开托管在 https://mcp.cdes.world --无需安装。

克劳德桌面

添加到您的 claude_desktop_config.json:

{
  "mcpServers": {
    "cdes": {
      "url": "https://mcp.cdes.world/sse"
    }
  }
}

VS代码(GitHub副本)

增添 .vscode/mcp.json 在您的项目中:

{
  "mcpServers": {
    "cdes": {
      "type": "sse",
      "url": "https://mcp.cdes.world/sse"
    }
  }
}

光标/风帆

{
  "mcpServers": {
    "cdes": {
      "url": "https://mcp.cdes.world/sse"
    }
  }
}

健康检查

curl https://mcp.cdes.world/health

选项2:本地运行(stdio)

从源代码安装以供本地/脱机使用:

git clone https://github.com/Acidni-LLC/cdes-mcp-server.git
cd cdes-mcp-server
pip install -e .
cdes-mcp-server

对于本地stdio传输,请配置MCP客户端:

{
  "mcpServers": {
    "cdes": {
      "command": "cdes-mcp-server",
      "args": []
    }
  }
}

可用工具

工具说明
list_schemas列出所有CDES v1模式,包括标题、描述和必填字段
get_schema按名称获取完整的JSON Schema文档
validate_data根据任何CDES架构验证数据对象
get_terpene_info按ID或名称查找详细的萜类信息
get_cannabinoid_info按ID或姓名查找详细的大麻素信息
lookup_terpene_color为萜烯获得标准化的WCAG 2.1 AA颜色
list_terpenes列出所有萜烯及其汇总数据
list_cannabinoids列出所有大麻素及其汇总数据
search_reference_data在所有参考数据中进行全文搜索
get_cdes_overview全面的CDES标准概述

可用资源

URI描述
cdes://schemas/v1/strain应变模式
cdes://schemas/v1/terpene-profileTerpene剖面图
cdes://schemas/v1/cannabinoid-profile大麻素概况图
cdes://schemas/v1/terpeneTerpene定义模式
cdes://schemas/v1/coa分析证书架构
cdes://schemas/v1/rating用户评级架构(CX扩展)
cdes://schemas/v1/rating-aggregate评级聚合架构
cdes://reference/terpene-library萜烯参考库(10种萜烯)
cdes://reference/cannabinoid-library大麻素参考库(9种大麻素)
cdes://reference/terpene-colors萜烯调色板(30种颜色)

交互示例

列出所有架构

> Use the CDES server to list all available schemas

The CDES standard includes 7 schemas:
1. Strain — cannabis strain definition with type, effects, flavors
2. Terpene Profile — 21 named terpene measurements
3. Cannabinoid Profile — 13 cannabinoid measurements with computed totals
4. Terpene — individual terpene definition with CAS number, effects
5. COA — Certificate of Analysis with lab info, safety tests
6. Rating — user rating/review (CX extension)
7. Rating Aggregate — aggregated rating statistics

验证数据

> Validate this strain data against the CDES schema:
> {"id": "strain-001", "name": "Blue Dream", "type": "hybrid"}

✅ Valid! The data conforms to the CDES v1 strain schema.

查找萜类化合物

> What is Myrcene? Use the CDES terpene library.

Myrcene (CAS: 123-35-3) is a monoterpene with an earthy, musky, herbal
aroma. It's the most common terpene in cannabis (~40% of strains).
Boiling point: 168°C. Key effects: relaxing, sedating, anti-inflammatory.
Found in mango, hops, lemongrass, and thyme.

模式结构

所有模式如下 2020-12年JSON模式草案 使用基本URI:

https://schemas.terprint.com/cdes/v1/

模式关系

strain.json
├── $ref → terpene-profile.json
├── $ref → cannabinoid-profile.json
└── enums: type, effects, flavors, difficulty

coa.json
├── $ref → terpene-profile.json
├── $ref → cannabinoid-profile.json
└── safetyTests: microbials, pesticides, heavyMetals, ...

terpene-profile.json
└── $defs/terpeneValue: number | {value, loq, lod, ...}

rating.json → rating-aggregate.json (computed)

参考数据许可

数据集许可证描述
萜烯库CC0-1.010种常见的大麻萜烯及其完整元数据
大麻素库CC0-1.09种具有颜色、效果和CAS编号的大麻素
萜烯颜色CC0-1.030 WCAG 2.1 AA兼容可视化颜色

发展

# Install with dev dependencies
pip install -e ".[dev]"

# Run tests
pytest

# Lint
ruff check src/
ruff format src/

相关项目

项目描述
cdes规范CDES规范和JSON模式
cdes sdk pythonCDES的Python SDK(Pydantic模型)
cdes参考数据参考数据(萜烯、大麻素)
cdes.worldCDES文档网站

许可证

______________________________________________________________________

*由...建造 Acidni有限责任公司 --为大麻数据生态系统提供动力。*

目录标签

目录标签

Python数据验证云端部署大麻行业混合部署数据标准JSON模式参考数据

接入字段

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

stdio

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

none

工具数量(toolCount,工具数)

10

资源数量(resourceCount,资源数)

0

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

0

权限和风险

stdionone部署方式未说明

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

安装前确认

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

来源信息

继续浏览同类 MCP