Microsoft SQL Server icon

CONNECT APP

Build with 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.

Databases

  • API key

MCP

Give your agent Microsoft SQL Server tools

Every Microsoft SQL Server 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 Microsoft SQL Server 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": "microsoft_sql_server",
      },
    },
  },
)

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

const { tools } = await mcp.listTools()

// e.g. run Execute Query:
const result = await mcp.callTool({
  name: "microsoft_sql_server-execute-query",
  arguments: {
    query: "Query",
    inputs: "Inputs",
  },
})

SDK

Run Microsoft SQL Server actions from your backend

Connect a user's Microsoft SQL Server account once, then run Execute Query 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: "microsoft_sql_server-execute-query",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    microsoft_sql_server: { authProvisionId: "apn_xxxxxxx" },
    query: "Query",
    inputs: "Inputs",
  },
})

MULTI-APP

Use Microsoft SQL Server with other popular apps

Most products don't stop at one integration. Pair Microsoft SQL Server 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. Playwright icon Playwright Playwright enables reliable end-to-end testing for modern web apps. Google Gemini icon Google Gemini Google Gemini is a multimodal AI by DeepMind that processes text, audio, images, and more. WhatsApp Business icon WhatsApp Business WhatsApp Business products support businesses from large to small. Engage audiences, accelerate sales and drive better customer support outcomes on the platform with more than 2 billion users around the world. Home Assistant icon Home Assistant Home assistant software Supabase icon Supabase Supabase is an open source Firebase alternative. DeepSeek icon 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. 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 Appsheet icon Google Appsheet With Google AppSheet, you can build powerful solutions that simplify work. No coding required. Postman icon Postman Postman is the world's leading API platform. Tailscale icon Tailscale Best VPN Service for Secure Networks

REFERENCE

App details

Reference metadata for the Microsoft SQL Server connector in the Pipedream registry.

App slug
microsoft_sql_server
Authentication
API key
Categories
Databases
Actions
5
Triggers
2
API proxy
Not available