qcc-mcp-legal-oauth
企查查法律数据 MCP OAuth 插件(DeepSeek Harness)
One-click OAuth connect to 企查查 (Qichacha) 法律数据 MCP inside DeepSeek Harness. 在 DeepSeek Harness 中一键 OAuth 授权接入企查查法律数据 MCP(法规法条 / 司法案例)。
功能 / Features
🔑 一键 OAuth 连接:
Authorization Code + PKCE(S256),动态注册客户端(无 client_secret),自动打开浏览器跳转企查查授权页,loopback 回调自动完成🌐 一次授权、全 Server 可用:一份
access_token/refresh_token覆盖企查查法律数据 MCP SERVER(legal-regulation法规 /legal-case案例,共 2 个);插件按 token 实际授权范围动态挂载——同时开通法规+案例的账号 2 个、仅开通法规的账号 1 个🔄 自动刷新:access_token 过期前自动 refresh(token 轮换),失败才需要重新授权
💾 安全持久化:token 存储于 DSH 存储域(
~/.dsh/storages,目录 0700),重启 Host 自动恢复连接🛠 对话即管理:内置
qcc_legal_oauth_connect/qcc_legal_oauth_status/qcc_legal_oauth_disconnect三个工具🚪 一键断开:调用 OAuth revoke 撤销 refresh_token 并停用 MCP 工具
🧩 与企业数据插件可共存:工具名、存储域、条目 id 与「企查查 MCP OAuth 插件」(company/risk/...)完全独立,可同时安装
Related MCP server: lark-mcp
安装 / Install
前置:DeepSeek Harness(dsh CLI,web profile),Node ≥ 20。
🤖 让 Agent 安装(最省事,推荐给不熟悉命令行的用户)
把下面的链接直接发给你的 DeepSeek Harness 对话(推荐先在 dshmarket 插件市场搜索「企查查法律数据」一键安装;市场直装失败时,同样把链接发给 Agent 即可代为安装):
帮我安装这个插件 https://github.com/duhu2000/qcc-mcp-legal-oauthAgent 会按本 README 执行以下命令(你也可以自己跑):
# 方式一:一键脚本(自动安装 + 注册 bundle + 提示重启)
bash <(curl -fsSL https://raw.githubusercontent.com/duhu2000/qcc-mcp-legal-oauth/main/install.sh)
# 方式二:手动两步
dsh plugin --profile web add qcc-dsh-mcp-legal-oauth # 安装依赖并自动注册 bundle
# 重启 dsh web说明:安装时的
peer dependencies警告可忽略——@deepseek-ai/*等对等依赖由 DSH web profile 自带(host 依赖),无需另行安装;安装完成后必须重启 dsh web 才能生效。
方式 A:npm 安装
# 1. 安装插件到 profile(声明了 dsh.bundle 的包会被 dsh plugin add 自动注册到 bundles)
dsh plugin --profile web add qcc-dsh-mcp-legal-oauth
# 2. 重启 dsh web若未自动注册:手动在 ~/.dsh/profiles/web/package.json 的
dsh.profile.bundles追加"qcc-dsh-mcp-legal-oauth"(与@deepseek-ai/dsh-base、@deepseek-ai/dsh-web-app并列),再重启。
方式 B:GitHub 直装
dsh plugin --profile web add github:duhu2000/qcc-mcp-legal-oauth
# 再重启 dsh web方式 C:源码 / 本地调试
git clone https://github.com/duhu2000/qcc-mcp-legal-oauth.git
cd qcc-mcp-legal-oauth
dsh plugin --profile web add "link:$(pwd)" # 或 pnpm add "file:$(pwd)"
# 再重启 dsh web插件包内自带
cordis.patch.yml(bundle patch);dsh plugin add自动完成依赖安装与 bundles 注册,插件行自动合入,无需手改任何文件。
使用 / Usage
重启后,插件会自动发起 OAuth 授权(默认开启,激活且无有效授权时自动打开企查查授权页);如未自动触发,在对话中输入:
你说 | 效果 |
"连接企查查法律数据" | 触发 |
"查一下企查查法律数据连接状态" | 触发 |
"断开企查查法律数据" | 触发 |
连接成功后,以下工具直接可用(示例):
mcp__legal-regulation__*:regulation_search(法规关键词检索)、regulation_detail(法规全文)、regulation_detail_article(法条原文)等mcp__legal-case__*:case_search(案例关键词检索)、case_detail(案例完整文书)等溯源工具:法规溯源 / 案例溯源(引用核验 + 可点击超链)
原理 / How it works
严格遵循《企查查MCP OAuth 接入文档》(Authorization Code + PKCE,公开接口版),与企业数据 MCP 插件共用同一套授权服务器:
发现 MCP Protected Resource Metadata → 2. 发现 OAuth Server Metadata(endpoint 全部动态读取,不硬编码)
动态注册客户端(
client_id,90 天自动续期)→ 4. 打开授权页(scope=mcp:tools)loopback 回调校验
state→ 6. 授权码 +code_verifier换 token解析 token 实际授权的 resource(JWT claim),通过
ctx.loader为授权的@deepseek-ai/dsh-mcp-client条目注入 Bearer header(法规+案例 2 个 / 仅法规 1 个)→ 8. 过期前自动刷新(轮换)
详见 docs/OAUTH-IMPLEMENTATION.md。
工具清单与调用示例详见 docs/TOOLS.md。
配置 / Configuration
插件行位于 ~/.dsh/profiles/web/cordis.patch.yml(bundle 合入后可见):
- id: qcc-legal-mcp-oauth
name: 'qcc-dsh-mcp-legal-oauth'
config:
issuer: 'https://agent.qcc.com' # OAuth 授权服务器
clientName: 'DeepSeek Harness - QCC Legal MCP' # OAuth 客户端名(授权页展示 + 后台品牌识别依据)
refreshSkewMs: 300000 # 过期前提前刷新(ms)
openBrowser: true # 自动打开浏览器(false = 仅打印授权 URL)
autoConnectOnActivate: true # 激活且无授权时自动打开授权页(false = 手动触发)
persistTokens: true # 持久化 token(false = 仅内存)
mcpEntryPrefix: 'mcp-qcc' # 受管 mcp-client 条目 id 前缀(条目:mcp-qcc-legal-regulation / mcp-qcc-legal-case)关于
clientName:它是 OAuth 协议的client_name,会被企查查写入 access_token 的client_nameclaim,用于后台看板品牌识别(企查查侧将名称去除空格/连字符/下划线并转小写后,按deepseekharness*前缀归一为激活来源deepseekharness)。默认值DeepSeek Harness - QCC Legal MCP已命中该前缀。如需自定义,请保持DeepSeek Harness前缀,否则后台会归入「其他(未注册)」、无法正确统计品牌激活。
安全说明 / Security
token 只写入
~/.dsh/storages(0700),不进入 git、不进入对话历史连接期间
loader会把条目配置写回 profile 配置文件(含 token),建议:chmod 600 ~/.dsh/profiles/web/cordis.yml;不要把~/.dsh加入任何仓库Bearer token 仅发送给授权集合内的精确 resource URL
断开时调用 revoke 撤销 refresh_token
如需彻底移除:
qcc_legal_oauth_disconnect后从 bundles 移除包名并dsh plugin --profile web remove qcc-dsh-mcp-legal-oauth
已知限制 / Limitations
插件默认管理 2 个法律数据 SERVER(
legal-regulation法规 /legal-case案例);账号 token 可能只授权其一,插件按 token 实际授权范围动态挂载(2 个 / 1 个)企业数据 SERVER(company/risk/ipr/operation/history/executive)由独立的「企查查 MCP OAuth 插件」(
qcc-dsh-mcp-oauth)管理,本插件不重复管理;两插件可同时安装第三方插件无法注册 DSH 设置页卡片(apiproxy allowlist 限制),管理入口为对话工具
回调使用本地 loopback 地址,适用于桌面端;SaaS/Web 回调地址需提前与企查查确认白名单
静态 API Key(Bearer YOUR_API_KEY)直连属企查查另一直连通道,不属本插件职责;如需静态 Key,直接用普通 mcp-client 配置即可
开发 / Development
npm install # 需要 host 依赖时(见 docs/INSTALL.md)
npm run lint # 语法检查
npm test # 单元 + 集成测试(含 mock OAuth 服务器全流程)测试覆盖:PKCE、元数据发现、动态注册、完整授权码流程(loopback)、refresh 轮换、revoke、 插件级集成(连接/幂等/自动刷新/断开/重启恢复/按 token 授权动态挂载)。
插件市场收录与搜索关键词 / Marketplace
本插件可通过以下渠道被发现与安装:
dsh-plugintopic(官方推荐发现渠道):DeepSeek Harness 官方推荐通过 GitHubdsh-plugintopic 发现插件,本仓库已打该 topic;dsh-plugin-marketplace 等社区市场据此自动收录,搜索走 GitHub 仓库搜索(仓库名 / 描述 / topic),收录即时但无人工审核。dshmarket(社区插件市场,人工精选 + PR 守门审核):数据源为 awesome-dsh-plugin 精选列表,仅安装列表内来源。本插件已提交收录 PR(
data/plugins/duhu2000__qcc-mcp-legal-oauth.yml),合并后即可在「设置 → 插件市场」浏览、搜索「企查查法律数据」并一键安装。安装方式:官方 CLI 支持dsh plugin add <package>通用安装,dshmarket 依此提供dsh plugin --profile web add dshmarket。
为便于中文 / 英文检索,已覆盖以下关键词:
中文:企查查、法律产品、法律数据、法规、案例(写入仓库描述与精选列表 zh 描述)
英文:qcc、qichacha、legal、law、legal-tech、legal-data、regulation、case(写入仓库名 / 描述 / topic / npm keywords)
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceA zero-configuration MCP server enabling AI assistants to interact with Feishu (Lark) workspace through OAuth authentication, supporting document operations, content creation, and advanced file management.37MIT
- AlicenseNot gradedqualityCmaintenanceEnables AI applications to access Feishu (Lark) knowledge base and cloud documents through the MCP protocol.371ISC
- AlicenseNot gradedqualityCmaintenanceA Model Context Protocol server that consolidates 237+ social/e-commerce data APIs (TikTok, Xiaohongshu, Taobao, etc.) into 6 fixed tools, enabling natural language semantic search and dynamic invocation without code changes.1MIT
Related MCP Connectors
MCP server for Argo RPG Platform — connects AI assistants to campaign data via OAuth2
Connect AI to millions of laws and court cases with the Lawstronaut MCP.
Brazilian Open Finance MCP — 30+ banks (Itaú, Nubank, etc.) to Claude/Cursor. Read-only.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/duhu2000/qcc-mcp-legal-oauth'
If you have feedback or need assistance with the MCP directory API, please join our Discord server