Glama
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Glama
MCP
Servers
mcp-server-datadog
by
winor30
Verified
npm
GitHub
Monitoring
TypeScript
Apache 2.0
88
8
Apple
Reddit
Discord
Overview
Inspect
Schema
Related Servers
Reviews
Score
Need Help?
View Source Code
Report Issue
.github
.husky
src
Dockerfile
eslint.config.js
.gitignore
jest.config.ts
LICENSE
package.json
pnpm-lock.yaml
.prettierignore
.prettierrc
README.md
smithery.yaml
tsconfig.json
tsup.config.ts
{ "name": "@winor30/mcp-server-datadog", "version": "1.2.0", "description": "MCP server for interacting with Datadog API", "repository": { "type": "git", "url": "https://github.com/winor30/mcp-server-datadog.git" }, "type": "module", "bin": { "mcp-server-datadog": "./build/index.js" }, "main": "build/index.js", "module": "build/index.js", "types": "build/index.d.ts", "files": [ "build", "README.md" ], "access": "public", "publishConfig": { "registry": "https://registry.npmjs.org", "access": "public" }, "scripts": { "build": "tsup && node -e \"require('fs').chmodSync('build/index.js', '755')\"", "prepare": "husky", "watch": "tsup --watch", "inspector": "npx @modelcontextprotocol/inspector build/index.js", "lint": "eslint . --ext .ts,.js --fix", "format": "prettier --write .", "test": "jest", "lint-staged": "lint-staged" }, "dependencies": { "@datadog/datadog-api-client": "^1.32.0", "@modelcontextprotocol/sdk": "0.6.0", "zod": "^3.24.2", "zod-to-json-schema": "^3.24.3" }, "devDependencies": { "@eslint/eslintrc": "^3.3.0", "@eslint/js": "^9.21.0", "@types/jest": "^29.5.14", "@types/node": "^20.11.24", "eslint": "^9.21.0", "globals": "^16.0.0", "husky": "^9.1.7", "jest": "^29.7.0", "prettier": "^3.5.2", "ts-jest": "^29.2.6", "ts-node": "^10.9.2", "tsup": "^8.3.6", "typescript": "^5.3.3", "typescript-eslint": "^8.24.1" }, "engines": { "node": ">=16.17.0" }, "lint-staged": { "*.{js,ts}": [ "eslint --fix", "prettier --write" ], "*.{json,md}": [ "prettier --write" ] } }