mukeshjc/prodsync-mcp-server
If you are the rightful owner of prodsync-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
ProdSync MCP Server is a custom Model Context Protocol server that provides real-time access to Datadog logs, integrating with Claude Desktop and Cursor IDE for enhanced developer workflows.
ProdSync MCP Server is designed to facilitate real-time access to Datadog logs, filtered by service, severity, and environment. It integrates seamlessly with Claude Desktop and Cursor IDE, allowing developers to access production context directly within their workflow. The server securely utilizes Datadog API and APP keys, which are stored in environment variables, ensuring secure access to logs. Additionally, it supports debugging through log files, making troubleshooting straightforward. The server is built using Node.js, and developers can easily set it up by installing dependencies, building the server, and running it in development mode with auto-rebuild capabilities. Debugging is facilitated through logs written to a specified file, and an MCP Inspector is available for protocol inspection and debugging.
Features
- Query Datadog logs by service, severity, and environment
- Securely uses Datadog API and APP keys from environment variables
- Debug logging to file for troubleshooting
Usages
usage with Claude Desktop
{ "mcpServers": { "prodsync-mcp": { "command": "node", "args": [ "/path/to/workspace/prodsync-mcp-server/build/index.js" ], "env": { "DATADOG_API_KEY": "<your_datadog_api_key>", "DATADOG_APP_KEY": "<your_datadog_app_key>" } } } }
usage with Cursor IDE
{ "mcpServers": { "prodsync-mcp": { "command": "node", "args": [ "/path/to/workspace/prodsync-mcp-server/build/index.js" ], "env": { "DATADOG_API_KEY": "<your_datadog_api_key>", "DATADOG_APP_KEY": "<your_datadog_app_key>" } } } }