-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.8 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.8 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
{
"$schema": "https://www.schemastore.org/package",
"name": "@dynamoi/mcp",
"version": "0.6.4",
"mcpName": "io.github.getDynamoi/dynamoi",
"type": "module",
"license": "MIT",
"description": "Remote MCP server for music promotion agents. Create free Smart Links, check artist and campaign readiness, and help musicians and labels get releases ready to promote.",
"keywords": [
"mcp",
"model-context-protocol",
"music-promotion",
"youtube-growth",
"spotify-marketing",
"meta-ads",
"google-ads",
"campaign-management",
"record-label-tools",
"artist-marketing",
"ad-automation",
"youtube-ads",
"music-advertising",
"spotify-streams",
"facebook-ads",
"instagram-ads"
],
"homepage": "https://dynamoi.com",
"repository": {
"type": "git",
"url": "git+https://github.com/getDynamoi/mcp.git"
},
"bugs": {
"url": "https://github.com/getDynamoi/mcp/issues"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"server.json",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./auth": {
"types": "./dist/auth/protected-resource.d.ts",
"import": "./dist/auth/protected-resource.js",
"default": "./dist/auth/protected-resource.js"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsgo --noEmit -p tsconfig.json",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.29.0",
"jose": "6.2.3",
"zod": "4.3.6"
},
"devDependencies": {
"@types/node": "25.6.0",
"@changesets/cli": "2.31.0",
"typescript": "6.0.3",
"tsup": "8.5.1"
}
}