-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@influxdata/influxdb3-mcp-server",
"version": "1.4.1",
"description": "Official InfluxDB MCP server for Model Context Protocol integration",
"license": "(Apache-2.0 OR MIT)",
"private": false,
"publishConfig": {
"access": "public"
},
"type": "module",
"engines": {
"node": ">=20.11.0"
},
"main": "./build/index.js",
"bin": {
"influxdb-mcp-server": "build/index.js"
},
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"dev": "tsc && node build/index.js",
"clean": "rm -rf build",
"lint": "eslint . --ext .ts,.js",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepublishOnly": "npm run clean && npm run build",
"pretest": "npm run build",
"test": "vitest run",
"test:integration": "INFLUX_TEST_ENABLED=true vitest run integration",
"test:watch": "vitest",
"test:infra:up": "docker compose -f docker-compose.test.yml up -d --wait",
"test:infra:down": "docker compose -f docker-compose.test.yml down",
"MCP inspector": "npx @modelcontextprotocol/inspector node build/index.js",
"docker:up": "docker compose up -d",
"docker:down": "docker compose down",
"docker:build": "docker compose build",
"docker:logs": "docker compose logs -f",
"docker:inspector": "npx @modelcontextprotocol/inspector docker run --rm -i --env-file .env.docker --add-host=host.docker.internal:host-gateway influxdb-mcp-server"
},
"files": [
"build",
"package.json",
"README.md",
"CHANGELOG.md",
"LICENSE-APACHE.txt",
"LICENSE-MIT.txt",
"example-*.mcp.json",
"env.example",
".env.docker",
"Dockerfile"
],
"keywords": [
"mcp",
"model-context-protocol",
"influxdb",
"time-series",
"database",
"ai",
"llm",
"influxdata"
],
"dependencies": {
"@influxdata/influxdb3-client": "1.4.0",
"@modelcontextprotocol/sdk": "1.30.0",
"axios": "1.18.0",
"dotenv": "16.6.1",
"zod": "3.25.76"
},
"devDependencies": {
"@eslint/js": "9.39.4",
"@types/node": "24.12.0",
"@typescript-eslint/eslint-plugin": "8.57.2",
"@typescript-eslint/parser": "8.57.2",
"eslint": "9.39.4",
"prettier": "3.8.1",
"typescript": "5.9.3",
"vitest": "4.1.1"
}
}