← 首页

安装与使用指南

几分钟把 litscan-rag 知识库接到你的编码 agent。两种方式:一个文件的极速路径,或手动配置。

极速路径 —— 一个文件,零手敲

登录控制台,点 ↓ AI 安装文件。下载到的文档里你的 API key 已经填好。在任意文件夹打开 Claude Code(或 Codex),把文件丢给它,说一句“按这个装好”——agent 自动加上 MCP 服务并装好两个 skill。

手动配置

1 · 领取你的 key

用学术邮箱(.edu / .ac)或 Gmail 在控制台注册。key 形如 sk-litscan-…,约 3 分钟内生效。每天 1000 次,研究者免费。

2 · 接入 Claude Code

在终端运行(替换成你的 key):

claude mcp add --transport http -s user litscan-rag \
  https://mcp.acceptpaper.com/mcp \
  -H "X-API-Key: YOUR_KEY"

3 · 接入 Codex(备选客户端)

加进 ~/.codex/config.toml。这是个 HTTP streamable MCP——字段名按你的 Codex 版本酌情调整:

[mcp_servers.litscan-rag]
url = "https://mcp.acceptpaper.com/mcp"
http_headers = { "X-API-Key" = "YOUR_KEY" }

4 · 安装两个 Skill

一行命令把 research-mentorresearch-explorer 装进 ~/.claude/skills/(Claude Code)。Codex 用户把每个 SKILL.md 粘进项目的 AGENTS.md

curl -fsSL https://acceptpaper.com/skills/install.sh | sh

5 · 开始用

  • research-mentor(导师)——描述一个想法:“这个新吗?该打败哪些基线?有什么坑?下一步做什么?”
  • research-explorer(探索)——给一个领域:“测绘前沿,把待探索方向排个序。”

Skill 自动编排 search / deep / quote / find_baselines / survey / trends / …,每条断言都落到真实 source_id

鉴权与额度

每次请求带 X-API-Key: YOUR_KEY(或 Authorization: Bearer YOUR_KEY)。每天 1000 次。每次调用都记进控制台——工具、查询词、返回论文、耗时。key 可随时轮换或吊销。

库里有什么

59,631 篇 CV/ML 论文(99.6% 来自 2024–2026)、115 万段落、一张引用图、16,864 张图——蒸馏成结构化 schema。18 个 MCP 工具:search、deep、quote、compare_methods、find_baselines、find_citing、find_lineage、survey、trends、narrative_threads、get_figure、find_experts、graph、analyze、compare、bibtex、status、discover_tools。

排错

← 首页 控制台 →