Skip to main content
Glama

DeepSeek MCP Server

基于 Model Context Protocol (MCP) 的 DeepSeek AI 服务器,通过 Playwright 浏览器自动化与 chat.deepseek.com 交互,提供 6 个 AI 工具,可集成到 Claude Desktop App 或其他 MCP 客户端中使用。

功能特性

6 个 AI 工具

工具名称

说明

deepseek_chat

通用对话 — 支持三种模式、深度思考、联网搜索

deepseek_code_review

代码审查 — 分析 Bug、性能问题,给出改进建议

deepseek_evaluate_idea

创意评估 — 评估技术方案的创新性、可行性、研究价值

deepseek_explain

概念解释 — 按初级/中级/专家级别解释文本或概念

deepseek_summarize

文本摘要 — 提取文本要点,支持自定义长度

deepseek_debug

调试辅助 — 分析错误信息,提供解决方案

三种聊天模式

模式

说明

DeepThink

联网搜索

文件上传

quick

快速模式(默认)

expert

专家模式

vision

识图模式

核心能力

  • 会话持久化 — 首次手动登录后,登录状态自动保存,重启无需重新登录

  • DeepThink 深度思考 — 所有模式均支持深度思考推理

  • Smart Search 联网搜索 — 快速模式下可开启联网搜索获取实时信息

  • Edge 浏览器 — 使用系统已安装的 Edge,无需额外下载

  • 完整的 TypeScript 类型定义

Related MCP server: DeepSeek MCP Server

安装

前置条件

  • Node.js >= 18.0.0

  • Microsoft Edge 浏览器(Windows 自带)

安装步骤

# 克隆仓库
git clone <repository-url>
cd deepseek-mcp

# 安装依赖
npm install

# 构建项目
npm run build

配置

在 Claude Desktop App 的配置文件中添加 MCP 服务器:

Windows: %APPDATA%\Claude\claude_desktop_config.json macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

开发模式(使用源码):

{
  "mcpServers": {
    "deepseek": {
      "command": "npx",
      "args": ["tsx", "C:/path/to/deepseek-mcp/src/index.ts"]
    }
  }
}

生产模式(使用构建后的代码):

{
  "mcpServers": {
    "deepseek": {
      "command": "node",
      "args": ["C:/path/to/deepseek-mcp/dist/index.js"]
    }
  }
}

配置完成后,重启 Claude Desktop App 即可使用。

首次使用

  1. 首次调用工具时,会自动弹出 Edge 浏览器窗口

  2. 在浏览器中手动登录 DeepSeek(手机号 + 验证码)

  3. 登录成功后,会话自动保存到 ~/.deepseek-mcp/browser-data/

  4. 之后重启服务器会自动恢复登录状态,无需再手动登录(无头模式运行)

使用示例

1. 通用对话

{
  "name": "deepseek_chat",
  "arguments": {
    "prompt": "请用 Python 实现一个快速排序算法"
  }
}

使用深度思考 + 联网搜索:

{
  "name": "deepseek_chat",
  "arguments": {
    "prompt": "2024年诺贝尔物理学奖授予了谁?",
    "mode": "quick",
    "deepthink": true,
    "smartSearch": true
  }
}

使用专家模式 + 深度思考:

{
  "name": "deepseek_chat",
  "arguments": {
    "prompt": "请详细分析黎曼猜想的意义和当前进展",
    "mode": "expert",
    "deepthink": true
  }
}

2. 代码审查

{
  "name": "deepseek_code_review",
  "arguments": {
    "code": "function fibonacci(n) {\n  if (n <= 1) return n;\n  return fibonacci(n-1) + fibonacci(n-2);\n}",
    "language": "javascript",
    "deepthink": true
  }
}

3. 创意评估

{
  "name": "deepseek_evaluate_idea",
  "arguments": {
    "idea": "使用多模态大语言模型进行跨语言代码迁移",
    "context": "目标是面向数据科学领域",
    "deepthink": true
  }
}

4. 概念解释

{
  "name": "deepseek_explain",
  "arguments": {
    "text": "Transformer 架构中的自注意力机制",
    "level": "beginner"
  }
}

level 可选值:beginner(初级)、intermediate(中级,默认)、expert(专家)。

5. 文本摘要

{
  "name": "deepseek_summarize",
  "arguments": {
    "text": "(此处填入需要摘要的长文本内容)...",
    "max_length": 500
  }
}

6. 调试辅助

{
  "name": "deepseek_debug",
  "arguments": {
    "error": "TypeError: Cannot read properties of undefined (reading 'map')",
    "code": "const items = await fetchItems();\nreturn items.map(item => item.name);",
    "context": "fetchItems() 在网络请求失败时返回 undefined",
    "deepthink": true
  }
}

开发

可用脚本

命令

说明

npm run build

编译 TypeScript 到 dist/

npm run dev

使用 ts-node 启动开发服务器

npm start

运行构建后的生产版本

npm test

运行所有测试

npm run test:watch

以 watch 模式运行测试

npm run typecheck

运行 TypeScript 类型检查

npm run lint

检查代码风格

项目结构

deepseek-mcp/
├── src/
│   ├── index.ts                 # MCP 服务器入口
│   ├── browser-manager.ts       # Playwright 浏览器管理(会话持久化)
│   ├── types/
│   │   └── index.ts             # TypeScript 类型定义
│   └── tools/
│       ├── deepseek-client.ts   # 核心浏览器自动化客户端
│       ├── chat.ts              # 通用对话工具
│       ├── code-review.ts       # 代码审查工具
│       ├── evaluate-idea.ts     # 创意评估工具
│       ├── explain.ts           # 概念解释工具
│       ├── summarize.ts         # 文本摘要工具
│       └── debug.ts             # 调试辅助工具
├── dist/                        # 编译输出
├── package.json
├── tsconfig.json
└── vitest.config.ts

故障排除

问题:浏览器启动失败

解决: 确认系统已安装 Microsoft Edge 浏览器。Windows 10/11 自带 Edge。

问题:登录状态丢失

解决: 删除 ~/.deepseek-mcp/browser-data/ 目录,重新启动服务器并手动登录。

问题:工具调用超时

原因: DeepSeek 响应过慢或网络问题。

解决: 检查网络连接,确认 chat.deepseek.com 可以正常访问。

问题:选择器找不到元素

原因: DeepSeek 更新了前端 UI。

解决: 这是浏览器自动化的固有局限。请更新 deepseek-client.ts 中的选择器常量。

技术栈

技术

用途

Node.js >= 18

运行时环境

TypeScript 5.x

类型安全的开发语言

Model Context Protocol SDK

MCP 服务器实现

Playwright

浏览器自动化

Vitest

单元测试框架

许可证

MIT License

Available Tools

6 tools
deepseek_chatA

Send a prompt to DeepSeek and return the AI response. Supports three modes: quick (default, with search+upload), expert (reasoning-focused), vision (image analysis). All modes support DeepThink reasoning.

ParametersJSON Schema
NameRequiredDescriptionDefault
modeNoChat mode: quick (default, with search+upload), expert (reasoning-focused), vision (image analysis)
promptYesThe prompt or message to send to DeepSeek
deepthinkNoEnable DeepThink reasoning mode (default: false)
smartSearchNoEnable Smart Search /联网搜索 for web results (quick mode only, default: false)
conversationNoConversation control: "continue" (default) appends to current conversation, "new" starts a fresh conversation without previous context

TDQS

A3.5/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description must cover behavioral traits on its own. It discloses modes and DeepThink support, but omits output format, conversation continuity defaults, and the fact that smartSearch is quick-mode-only (which is only in the schema).

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two tightly written sentences; the main action is front-loaded and the mode summary earns its place. No filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description plus schema cover the input space, but there is no output schema and no mention of what the response looks like. It also doesn't route the agent to specialized siblings, so a user needing code review might still pick this tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline is 3. The description mostly restates the mode enum and adds the 'with search+upload' capability, but it doesn't clarify any parameter beyond what the schema already documents.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a clear verb and resource: 'Send a prompt to DeepSeek and return the AI response.' It does not explicitly contrast with sibling tools like deepseek_code_review or deepseek_debug, so it falls short of a full 5, but the general-purpose intent is unmistakable.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The mode descriptions imply use cases (quick for default, expert for reasoning, vision for image analysis), but there is no explicit guidance about when to choose this general chat tool versus the specialized deepseek_* siblings, nor any exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

deepseek_code_reviewA

Send code to DeepSeek for review and receive analysis of potential bugs, performance issues, and improvement suggestions.

ParametersJSON Schema
NameRequiredDescriptionDefault
codeYesThe source code to review
languageNoProgramming language of the code (e.g., "typescript", "python")
deepthinkNoEnable DeepThink for more thorough analysis (default: false)

TDQS

A3.6/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full disclosure burden. It does openly state that code is sent to DeepSeek and that analysis is returned, which is the core behavior. However, it omits important context for a tool that transmits source code: no mention of privacy/data-handling implications, auth requirements, response format, or whether the call is synchronous. These are meaningful gaps.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single, front-loaded sentence states the action and the concrete review areas without fluff. Every clause contributes essential information (send, target, analysis categories), making it appropriately sized and easy to scan.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple stateless tool, the description plus fully-documented schema is enough to invoke it correctly: provide code, optionally language and deepthink, and expect an analysis. There is no output schema, so the described return content ('potential bugs, performance issues, and improvement suggestions') covers the response. Minor incompleteness from missing sibling differentiation and response format is already accounted for in other dimensions, so this dimension remains adequate.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline is 3; the schema already documents 'code', 'language', and 'deepthink' adequately. The tool description adds no additional meaning or usage detail for these parameters, so no reason to exceed the baseline.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Send code to DeepSeek for review') and the deliverable ('analysis of potential bugs, performance issues, and improvement suggestions'). It is a specific verb+ressource+output combination. However, it does not explicitly distinguish itself from siblings like deepseek_debug or deepseek_explain, so it falls short of a 5.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The context of when to use this tool is implied: an agent would use it when code review is needed. But there is no explicit guidance on when to prefer this over deepseek_debug, deepseek_explain, or deepseek_evaluate_idea, and no 'when not to use' conditions. This leaves the choice to inference.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

deepseek_debugB

Analyse an error message and related code to suggest likely causes and fixes.

ParametersJSON Schema
NameRequiredDescriptionDefault
codeNoThe source code where the error occurred (optional)
errorYesThe error message or exception text
contextNoAdditional context such as stack trace or logs (optional)
deepthinkNoEnable DeepThink for deeper analysis (default: false)

TDQS

B3.3/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description must carry the behavioural burden. It does disclose that the tool 'suggests' causes and fixes rather than applying them, and 'likely' conveys uncertainty. However, it does not mention limitations such as not executing code, not modifying files, or the nature of the output beyond a text suggestion.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The entire description is a single front-loaded sentence with no filler, repetition, or unnecessary detail. Every word contributes to the core purpose, making it highly efficient for an agent to parse.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The schema covers parameters well and the tool is conceptually simple, but the description omits sibling differentiation and does not state any behavioral constraints. An agent can infer basic invocation, but the lack of usage guidance and output expectations leaves some context incomplete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents all four parameters. The description adds minimal parameter context ('error message' maps to error, 'related code' maps to code), but it provides no additional semantic value beyond what the input schema already states.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Analyse') with a clear resource ('an error message and related code') and a clear outcome ('suggest likely causes and fixes'). It is not a tautology and conveys meaning, but it does not explicitly differentiate from sibling tools like deepseek_explain or deepseek_code_review.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is given about when to prefer this over deepseek_explain, deepseek_code_review, or other siblings. The phrasing implies it is for error scenarios, but there are no explicit conditions, exclusions, or alternative routing.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

deepseek_evaluate_ideaA

Evaluate a technical idea or research proposal for innovation, feasibility, and potential impact.

ParametersJSON Schema
NameRequiredDescriptionDefault
ideaYesThe idea or proposal to evaluate
contextNoAdditional background context or constraints for the evaluation
deepthinkNoEnable DeepThink for deeper evaluation (default: false)

TDQS

A3.7/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are present, so the description carries the burden of explaining behavior. It does state the evaluation axes, which adds some context beyond the name, but it does not disclose whether the output is a score, prose assessment, or structured report, nor does it mention potential latency or DeepThink implications.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single, compact sentence that immediately communicates the tool's purpose and evaluation criteria. There is no redundant wording or unnecessary detail.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The definition is sufficient for basic invocation since the one required parameter is well-documented. However, with no output schema and no annotations, an agent still cannot tell what form the evaluation will take or how detailed the result will be, so the description is not fully complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, and each parameter already has a clear description. The tool description adds no additional parameter-level nuance, but the baseline of 3 is appropriate because the schema fully documents the parameters.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Evaluate') and identifies a clear resource ('technical idea or research proposal') with explicit criteria ('innovation, feasibility, and potential impact'). This clearly distinguishes it from sibling tools like deepseek_code_review, deepseek_explain, and deepseek_chat.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Usage is implied: use this tool when you want an assessment of an idea or proposal. However, it does not explicitly state when not to use it, nor does it compare against alternatives such as deepseek_chat for open-ended discussion or deepseek_code_review for code-specific feedback.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

deepseek_explainA

Get a clear explanation of a concept, code snippet, or text at a specified difficulty level.

ParametersJSON Schema
NameRequiredDescriptionDefault
textYesThe text, concept, or code to explain
levelNoDifficulty level for the explanation (default: intermediate)
deepthinkNoEnable DeepThink for more detailed explanations (default: false)

TDQS

A3.6/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are present, so the description must carry behavioral disclosure. It does state the primary behavior—returning an explanation at a chosen level—and the schema adds the DeepThink toggle, but it does not describe output format, length expectations, or whether any external side effects exist.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

One tight sentence that puts the main action and object first, with no filler or redundant boilerplate. Every phrase contributes to understanding what the tool does.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple tool with one required parameter and a fully documented schema, the description is mostly complete. The only real gap is the lack of explicit sibling differentiation and an output-shape statement, but these are relatively minor given the tool's low complexity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema documents all three parameters with 100% coverage, including valid enum values and defaults. The description adds little beyond the schema, so baseline 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

Names a specific action (explain) and a clear resource scope (concept, code snippet, or text), plus a distinguishing feature (difficulty level). It is broadly clear, but it does not explicitly contrast with close siblings like deepseek_summarize or deepseek_chat, leaving some ambiguity.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies use for explanation-style queries, which is distinct from debugging or code review, but it gives no explicit guidance on when to prefer this tool over siblings. An agent would have to infer the boundary between 'explain' and 'summarize' or 'chat'.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

deepseek_summarizeA

Summarize long text into key points, with an optional maximum length constraint.

ParametersJSON Schema
NameRequiredDescriptionDefault
textYesThe text to summarize
deepthinkNoEnable DeepThink for better summarization (default: false)
max_lengthNoMaximum number of characters for the summary (optional)

TDQS

A3.6/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It discloses the core behavior—condensing long text into key points—and the optional max_length constraint, but it does not mention how max length is enforced or any caveats about input size limits.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single sentence of 12 words that front-loads the primary action and outcome. Every word earns its place with no filler or redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple summarization tool with no output schema, the description is mostly complete: it states what the tool does, the expected output ('key points'), and the optional constraint. The main gap is the absence of usage context relative to sibling tools, but this is minor given the tool's low complexity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents all three parameters. The description only adds that max_length is optional, which is already encoded in the schema, providing minimal extra meaning.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Summarize') and resource ('long text'), and specifies the outcome ('key points'). It is clearly distinct from sibling tools like deepseek_chat, deepseek_explain, and deepseek_debug.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description offers no guidance on when to use this tool versus its siblings. It does not mention conditions for use, exclusions, or alternatives such as deepseek_explain or deepseek_chat.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

TDQS

A3.7/5.0
Disambiguation4/5

Most tools have clearly distinct purposes: chat, code review, idea evaluation, explanation, summarization, and debugging. However, deepseek_chat is a general-purpose tool that could theoretically handle explain/summarize/debug tasks, creating mild overlap with the specialized tools.

Naming Consistency4/5

All tools share the consistent deepseek_ prefix and use lowercase snake_case, making the set feel cohesive. The pattern is mostly verb-based (chat, evaluate, explain, summarize, debug), though deepseek_code_review is a noun phrase rather than a verb-action name.

Tool Count5/5

Six tools is a well-scoped number for an AI assistant server. Each tool covers a distinct high-level capability without unnecessary bloat or obvious redundancy.

Completeness4/5

The tool surface covers the primary expected capabilities of a DeepSeek assistant: general chat, code review, debugging, explanation, summarization, and idea evaluation. Minor gaps exist (e.g., no dedicated translation or code generation tool), but these are workarounds via deepseek_chat.

Maintenance

ActivityStale
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    D
    maintenance
    Provides LLM Agents with AI-powered mentorship for code review, design critique, writing feedback, and brainstorming using the Deepseek API, enabling enhanced output in various development and strategic planning tasks.
    5
    31
    Apache 2.0
  • F
    license
    Not graded
    quality
    D
    maintenance
    Provides browser automation, AI-powered analysis, visual processing, web scraping, automated test generation, and DevTools analysis capabilities. Supports multiple AI providers (OpenAI, Anthropic, Google, Ollama) for intelligent web interaction and data extraction.
  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables LLMs to perform advanced GitHub code searches with intelligent filtering and content retrieval using Playwright automation, optimized for DeepSeek integration.
    4
    MIT

Latest Blog Posts

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/Skye412/deepseek-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server