-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 996 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 996 Bytes
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
{
"name": "@developer-smallestai/atoms-mcp-server",
"version": "0.1.0",
"description": "MCP server for the Atoms platform — query call logs, agents, usage stats from your IDE",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/aryasmol/atoms-mcp-server.git"
},
"keywords": [
"mcp",
"atoms",
"voice-agent",
"ai-agent",
"smallest"
],
"files": [
"dist"
],
"bin": {
"atoms-mcp": "./dist/index.js"
},
"scripts": {
"build": "esbuild src/index.ts --platform=node --bundle --format=esm --outdir=dist --banner:js=\"#!/usr/bin/env node\" --packages=external",
"dev": "tsx src/index.ts",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^22.0.0",
"esbuild": "^0.24.0",
"tsx": "^4.19.0",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=18"
}
}