DeepSeek icon

CONNECT APP

Build with DeepSeek

DeepSeek is an AI-powered tool that helps developers quickly find, understand, and optimize code using natural language search and contextual suggestions. It integrates seamlessly with your workflow, offering insights into your codebase to improve productivity and code quality. Perfect for teams and solo developers, DeepSeek simplifies code navigation and accelerates development.

Artificial Intelligence (AI)

  • API key

MCP

Give your agent DeepSeek tools

Every DeepSeek action is exposed as an MCP tool on Pipedream's remote server. Point a client at it with your end user's ID and Connect resolves that user's DeepSeek account for each tool call — you store no tokens.

// accessToken: mint a short-lived token with the Connect SDK — see the MCP guide
const transport = new StreamableHTTPClientTransport(
  new URL("https://remote.mcp.pipedream.net/v3"),
  {
    requestInit: {
      headers: {
        Authorization: `Bearer ${accessToken}`,
        "x-pd-project-id": "{project_id}",
        "x-pd-environment": "production",
        "x-pd-external-user-id": "{external_user_id}", // any stable ID for this user in your system
        "x-pd-app-slug": "deepseek",
      },
    },
  },
)

const mcp = new Client({ name: "my-agent", version: "1.0.0" })
await mcp.connect(transport)

const { tools } = await mcp.listTools()

// e.g. run Create Chat Completion:
const result = await mcp.callTool({
  name: "deepseek-create-chat-completion",
  arguments: {
    messages: ["Messages"],
    frequencyPenalty: "Frequency Penalty",
  },
})

API PROXY

Call the DeepSeek API directly

For an endpoint with no pre-built tool, the Connect proxy forwards your request to the DeepSeek API with the connected user's credentials attached. You store no tokens and write no refresh logic.

const resp = await pd.proxy.get({
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  accountId: "apn_xxxxxxx",
  url: "https://api.example.com/v1/me",
})

// Any allowed DeepSeek endpoint works here. Pipedream attaches the
// connected account's credentials to the outgoing request.

SDK

Run DeepSeek actions from your backend

Connect a user's DeepSeek account once, then run Create Chat Completion on their behalf from your own code — TypeScript, Python, or plain HTTP.

import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "deepseek-create-chat-completion",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    deepseek: { authProvisionId: "apn_xxxxxxx" },
    messages: ["Messages"],
    frequencyPenalty: "Frequency Penalty",
  },
})

EVENTS

DeepSeek triggers

Event sources your backend can deploy for users and receive through a webhook.

No DeepSeek triggers are available yet.

MULTI-APP

Use DeepSeek with other popular apps

Most products don't stop at one integration. Pair DeepSeek with the other apps your users rely on, and ship use cases that span both.

OpenAI (ChatGPT) icon OpenAI (ChatGPT) OpenAI is an AI research and deployment company with the mission to ensure that artificial general intelligence benefits all of humanity. They are the makers of popular models like ChatGPT, DALL-E, and Whisper. Anthropic (Claude) icon Anthropic (Claude) AI research and products that put safety at the frontier. Introducing Claude, a next-generation AI assistant for your tasks, no matter the scale. Google Gemini icon Google Gemini Google Gemini is a multimodal AI by DeepMind that processes text, audio, images, and more. Google Sheets icon Google Sheets Use Google Sheets to create and edit online spreadsheets. Get insights together with secure sharing in real-time and from any device. Microsoft Excel icon Microsoft Excel You can use Microsoft Graph to allow web and mobile applications to read and modify Excel workbooks stored in OneDrive for Business, SharePoint site or Group drive. Telegram icon Telegram Telegram, is a cloud-based, cross-platform, encrypted instant messaging (IM) service. Zip Archive API icon Zip Archive API Compress your files with the ZIP Archive API. Amazon Alexa icon Amazon Alexa Alexa is Amazon’s cloud-based voice service available on hundreds of millions of devices from Amazon and third-party device manufacturers. With Alexa, you can build natural voice experiences Translate.com icon Translate.com Translate.com is an innovative translation platform that provides machine and human translations Home Assistant icon Home Assistant Home assistant software Supabase Management API icon Supabase Management API Manage your Supabase organizations and projects programmatically. Microsoft SQL Server icon Microsoft SQL Server Unleash the power of your data—on-premises, in the cloud, or at the edge—and reveal insights to transform your business.

REFERENCE

App details

Reference metadata for the DeepSeek connector in the Pipedream registry.

App slug
deepseek
Authentication
API key
Categories
Artificial Intelligence (AI)
Actions
3
Triggers
0
API proxy
Available