-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.84 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.84 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
{
"name": "attio-mcp-server",
"version": "1.0.0",
"description": "High-performance Model Context Protocol server for Attio API integration with AI assistants",
"author": {
"name": "Brian Roach",
"url": "https://linkedin.com/in/brian-roach-"
},
"private": true,
"type": "module",
"main": "build/index.js",
"files": ["build", "src", "tools", "docs"],
"scripts": {
"start": "node build/index.js",
"build": "tsc && chmod 755 build/index.js",
"typecheck": "tsc --noEmit",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"prestart": "bun run build",
"check": "biome check --write",
"lint": "biome lint --write",
"format": "biome format --write",
"ci": "biome ci",
"test:manual": "bun tools/test-manual.js",
"test:demo": "bash tools/demo.sh",
"test:names": "bun tools/test-transformed-names.js",
"test:server": "bun -e \"console.log('Starting server... Send JSON-RPC commands via stdin'); process.loadEnvFile?.('.env'); import('./build/index.js')\"",
"apply-tool-names": "bun src/apply-tool-names.ts",
"postbuild": "bun run apply-tool-names"
},
"keywords": [
"attio",
"mcp",
"model-context-protocol",
"ai",
"assistant",
"claude",
"cursor",
"api",
"crm"
],
"repository": {
"type": "git",
"url": "https://github.com/itsbrex/attio-mcp-server"
},
"homepage": "https://github.com/itsbrex/attio-mcp-server#readme",
"engines": {
"node": ">=20.0.0",
"bun": ">=1.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.10.0",
"axios": "^1.9.0",
"dotenv": "^16.4.5",
"json-schema-to-zod": "^2.6.1",
"zod": "^3.24.3"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "^1.2.15",
"@types/node": "^22.15.2",
"typescript": "^5.8.3"
}
}