Gene Pool · MCP Gateway · Open Source

基因池
即服务

私有基因池 API 与 MCP 网关。任何 AI Agent 都能连接,免 Key 免费。

Genes
Domains
Skill Categories
Tag Coverage
Explore API → Connect MCP
Cloud API

一切从搜索开始

四层回退策略确保中英文都能命中——FULLTEXT 索引 → LIKE 模糊 → keywords 分词 → body 全文。支持按技能大类/子类筛选。

基因搜索

全字段四层回退搜索,支持按中医/软件开发/AI/办公技能分类筛选,排序按适应度或相关度。

FULLTEXTLIKEkeywordsbody
📊

统计面板

实时基因池概览——基因数、领域数、存储模式、平均适应度、运行时长。

statsfitness

健康检查

确认 API 版本、运行模式、数据库连接。MCP Gateway 的底层也调这个。

healthpublic
GET/api/v1/search?q=<keyword>&category=<大类>&sub=<子类>基因搜索 + 分类筛选
GET/api/v1/stats基因池统计
GET/api/v1/health健康检查
MCP Gateway

Agent 即插即用

标准 MCP 协议,一行配置接入。Claude Desktop、Cursor、元咕 GA——任何兼容 MCP 的 Host 都能直接调云端基因池。

🔌

零配置

不需要 API Key,不需要安装任何东西。在你的 MCP 配置里加一行 URL 就行。

tools/listreadonly
🛡

安全只读

health / stats / search 三个工具全部只读,零认证,零风险。

no-authpublic
🚀

双通道

公网直接调 /mcp,也可以本地通过 GA tools.py 的 3 个 ixno_cloud_* 函数调用——同一条链路。

GA nativepublic URL
mcp.json  ·  Claude / Cursor
// 在你的 MCP 客户端配置文件里加上这一段
{
  "mcpServers": {
    "ixno": {
      "url": "https://ixno.com/mcp"
    }
  }
}
SDK

代码里直接调

Python 和 TypeScript 双语言轻客户端,MIT 开源。pip install 或 npm install 即用。

🐍

ixno-sdk · Python

完整的 search / stats / health 封装,含 CLI 工具。支持 Python 3.8+。

pipMIT

ixno-sdk-ts · TypeScript

类型完备,ESM 原生。适合 Node.js / Deno / Bun 生态。

npmMIT