-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.6 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.6 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
{
"name": "iris-mcp",
"version": "1.0.0",
"description": "MCP server for InterSystems IRIS database integration",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc && node dist/index.js",
"watch": "tsc --watch",
"test": "node test-complete.js",
"test:all": "npm run test:integration && npm run test:prompts && npm run test:security && npm run test:schema",
"test:integration": "npm run test:list-tables && npm run test:list-columns && npm run test:query",
"test:list-tables": "node tests/integration/list-tables.integration.test.js",
"test:list-columns": "node tests/integration/list-columns.integration.test.js",
"test:query": "node tests/integration/query.integration.test.js",
"test:prompts": "node tests/prompts/prompt-integration.test.js",
"test:security": "node tests/security/sql-injection.security.test.js",
"test:schema": "node tests/schema/tool-schema.schema.test.js",
"test:inspector": "npx @modelcontextprotocol/inspector node dist/index.js",
"test:inspector:cli": "node tests/run-inspector-tests.js",
"setup-test-data": "node populate-test-data.js"
},
"keywords": [
"mcp",
"iris",
"intersystems",
"database",
"model-context-protocol"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"dotenv": "^16.4.5",
"intersystems-iris": "^0.2.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@modelcontextprotocol/inspector": "^0.17.1",
"@types/node": "^22.0.0",
"typescript": "^5.6.0"
}
}