DSP Booking MCP Server
Enables booking flow operations through a DSP (Demand-Side Platform) API with OAuth authentication. Provides a proof-of-concept integration for managing DSP booking workflows through natural language interactions.
README
DSP-MCP
PoC for DSP Booking flow through MCP Server.
MCP Config stdio
$ pnpm run build
{
// use `mcpServers` for Claude
"servers": {
"dsp-server": {
"type": "stdio", // no need in claude_desktop_config.json
"command": "node",
"args": ["~/dsp-mcpserver/dist/index.js"],
"env": {
"DSP_BOOKING_BASE_URL": "https://example.com/booking",
"DSP_BOOKING_API_VERSION": "v1",
"DSP_APIM_SUBSCRIPTION_KEY": "xxx",
"DSP_OAUTH_CLIENT_ID": "xxx",
"DSP_OAUTH_CLIENT_SECRET": "xxx",
"DSP_OAUTH_TOKEN_URL": "https://example.com/security/oauth2/token"
}
}
}
}
MCP Config HTTP VSCode (Able to start locally or even MCP Remote)
Using VSCode Agent we are able to use local MCP Remote or even public MCP Remote
$ pnpm run build
$ pnpm run start --transport http --port 3067
# OR Docker
$ docker-compose up --build -d
{
// use `mcpServers` for Claude
"servers": {
"dsp-server": {
"type": "http",
"url": "http://localhost:3067/mcp" // or https://your-host.or.lambda.url/mcp if publicly accessibile
}
}
}
MCP Config HTTP Claude Desktop (Required HTTPS)
Make sure you have deploy the server to the public-accessible endpoint e.g., https://your-host.or.lambda.url/mcp
Option 1
Use a Custom Connector settings in the Claude Settings
Name: DSP Server
Remote MCP Server URL: https://your-host.or.lambda.url/mcp
Option 2
Use mcp-remote in your claude_desktop_config.json
{
"mcpServers": {
"dsp-server": {
"command": "npx",
"args": ["mcp-remote", "https://your-host.or.lambda.url/mcp"]
}
}
}
MCP Config Docker
$ docker build -t dsp-mcpserver:stdio . -f Dockerfile.stdio
{
// use `mcpServers` for Claude
"servers": {
"dsp-server": {
"type": "stdio", // no need in claude_desktop_config.json
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"DSP_BOOKING_BASE_URL=https://example.com/booking",
"-e",
"DSP_BOOKING_API_VERSION=v1",
"-e",
"DSP_APIM_SUBSCRIPTION_KEY=xxx",
"-e",
"DSP_OAUTH_CLIENT_ID=xxx",
"-e",
"DSP_OAUTH_CLIENT_SECRET=xxx",
"-e",
"DSP_OAUTH_TOKEN_URL=https://example.com/security/oauth2/token",
"dsp-mcpserver:stdio"
]
}
}
}
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.