DSP Booking MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@DSP Booking MCP Serverbook a meeting room for tomorrow at 2pm"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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"
}
}
}
}Related MCP server: Google Ad Manager MCP Server
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/mcpOption 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"
]
}
}
}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
- FlicenseAqualityDmaintenanceEnables authentication and interaction with DhanHQ trading APIs through OAuth-based login flow, allowing users to manage trading operations and access market data through natural language.Last updated18
- AlicenseAqualityFmaintenanceEnables AI assistants to manage Google Ad Manager campaigns, line items, creatives, and advertisers through natural language, automating ad operations that normally require countless clicks through the UI.Last updated3517MIT
- FlicenseAqualityDmaintenanceEnables interaction with the DiSH room booking platform to search availability, create bookings, and manage reservations. It allows AI assistants to handle meeting room logistics directly through natural language commands.Last updated3
- Alicense-qualityCmaintenanceEnables LLMs to interact with the Google Ads API to retrieve account information, list accessible customers, and query campaign performance. It allows users to manage and analyze Google Ads data through natural language interfaces.Last updatedApache 2.0
Related MCP Connectors
Boost posts and launch community growth campaigns from your AI assistant. OAuth, credit-billed.
Agentic scheduling & booking for field service: availability, jobs, customers, crews, fleet.
AI-native scheduling: check availability, book meetings, cancel and reschedule via MCP
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/hrz8/mcp-openapi'
If you have feedback or need assistance with the MCP directory API, please join our Discord server