Initial commit

This commit is contained in:
Felix Zösch
2025-12-11 20:30:12 +01:00
commit 3e23474476
21 changed files with 5327 additions and 0 deletions

37
package.json Normal file
View File

@@ -0,0 +1,37 @@
{
"name": "influxdb-mcp-server",
"version": "1.0.0",
"description": "Model Context Protocol server for InfluxDB v2",
"type": "module",
"main": "dist/index.js",
"bin": {
"influxdb-mcp-server": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"watch": "tsc --watch",
"start": "node dist/index.js"
},
"keywords": [
"mcp",
"influxdb",
"model-context-protocol",
"timeseries",
"flux"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"axios": "^1.7.9",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^22.10.1",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=18.0.0"
}
}