KnowS MCP Server
Enables medical evidence retrieval and analysis via AI-powered search and summarization tools.
README
KnowS MCP Server
KnowS 医学证据检索与分析平台的 MCP (Model Context Protocol) Server。
安装与使用
前置条件
本包发布在 GitHub Packages,需要先配置 npm registry。在 ~/.npmrc 中添加:
//npm.pkg.github.com/:_authToken=YOUR_GITHUB_TOKEN
@PancrePal-xiaoyibao:registry=https://npm.pkg.github.com
YOUR_GITHUB_TOKEN需要有read:packages权限。
环境变量
| 变量 | 必填 | 说明 |
|---|---|---|
KNOWS_API_KEY |
是 | KnowS API 密钥 |
KNOWS_API_HOST |
否 | API 地址,默认 https://dev-api.nullht.com |
Claude Code 配置
在 ~/.claude/settings.json 或项目 .claude/settings.json 中添加:
{
"mcpServers": {
"knows": {
"command": "npx",
"args": ["@PancrePal-xiaoyibao/knows-mcp-server"],
"env": {
"KNOWS_API_KEY": "your_api_key",
"KNOWS_API_HOST": "https://api.nullht.com"
}
}
}
}
Claude Desktop 配置
在 ~/Library/Application Support/Claude/claude_desktop_config.json(macOS)中添加:
{
"mcpServers": {
"knows": {
"command": "npx",
"args": ["@PancrePal-xiaoyibao/knows-mcp-server"],
"env": {
"KNOWS_API_KEY": "your_api_key",
"KNOWS_API_HOST": "https://api.nullht.com"
}
}
}
}
直接运行
# 通过 npx
KNOWS_API_KEY=your_key npx @PancrePal-xiaoyibao/knows-mcp-server
# 或全局安装后运行
npm install -g @PancrePal-xiaoyibao/knows-mcp-server
KNOWS_API_KEY=your_key knows-mcp-server
本地开发
# 安装依赖
npm install
# 使用 bun 开发(热重载)
KNOWS_API_KEY=your_key bun run dev
# 构建
npm run build
# 运行构建产物
KNOWS_API_KEY=your_key npm start
工具列表
| 工具 | 说明 |
|---|---|
ai_search |
AI 检索,根据问题返回相关医学证据列表 |
evidence_summary |
单篇证据 AI 概要总结 |
all_evidence_summary |
获取所有证据的 AI 总结 |
evidence_highlight |
获取证据被引用的原文内容 |
answer |
基于问题和证据生成场景总结 |
answer_stream |
场景总结(流式收集) |
auto_tagging |
证据自动化标签提取 |
get_paper_en |
英文文献详情 |
get_paper_cn |
中文文献详情 |
get_guide |
指南详情 |
get_meeting |
会议详情 |
list_questions |
历史提问列表 |
list_interpretations |
文献解读历史列表 |
create_evidence_by_pdf |
通过 PDF 创建新证据 |
系统提示词
项目附带了推荐的系统提示词 SYSTEM_PROMPT.md,用于指导 AI 助手基于 KnowS 工具进行结构化的医学文献调研。
发版
# 更新 package.json 中的 version 后
git tag v0.x.x
git push origin v0.x.x
推送 v* tag 后,GitHub Actions 会自动运行测试并发布到 GitHub Packages。
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.