@getmcpads/meta-ads-mcp-server 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,79 @@
1
+ {
2
+ "name": "@getmcpads/meta-ads-mcp-server",
3
+ "version": "1.0.0",
4
+ "description": "Open-source MCP server for the Meta (Facebook & Instagram) Ads Marketing API. 34 read tools and 10 write tools that preview before they apply, 190 metrics, 56 breakdowns. Self-hosted, bring your own token.",
5
+ "license": "Apache-2.0",
6
+ "type": "module",
7
+ "main": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "bin": {
10
+ "meta-ads-mcp": "dist/cli.js"
11
+ },
12
+ "exports": {
13
+ ".": {
14
+ "types": "./dist/index.d.ts",
15
+ "import": "./dist/index.js"
16
+ }
17
+ },
18
+ "scripts": {
19
+ "build": "tsup",
20
+ "dev": "tsx watch src/cli.ts",
21
+ "doctor": "node scripts/doctor.mjs",
22
+ "start": "node dist/cli.js",
23
+ "test": "tsx --test test/*.test.mjs",
24
+ "lint": "eslint src/",
25
+ "typecheck": "tsc --noEmit",
26
+ "prepublishOnly": "npm run build"
27
+ },
28
+ "dependencies": {
29
+ "@modelcontextprotocol/sdk": "^1.12.0",
30
+ "zod": "^3.24.0"
31
+ },
32
+ "devDependencies": {
33
+ "@eslint/js": "^9.0.0",
34
+ "@types/node": "^22.0.0",
35
+ "eslint": "^9.0.0",
36
+ "globals": "^15.0.0",
37
+ "tsup": "^8.0.0",
38
+ "tsx": "^4.0.0",
39
+ "typescript": "^5.7.0",
40
+ "typescript-eslint": "^8.0.0"
41
+ },
42
+ "engines": {
43
+ "node": ">=18.0.0"
44
+ },
45
+ "files": [
46
+ "dist/",
47
+ "LICENSE",
48
+ "NOTICE",
49
+ "README.md"
50
+ ],
51
+ "keywords": [
52
+ "mcp",
53
+ "mcp-server",
54
+ "model-context-protocol",
55
+ "facebook-ads",
56
+ "meta-ads",
57
+ "instagram-ads",
58
+ "meta-marketing-api",
59
+ "graph-api",
60
+ "advertising",
61
+ "marketing-analytics",
62
+ "claude",
63
+ "chatgpt",
64
+ "cursor",
65
+ "ai-agent"
66
+ ],
67
+ "repository": {
68
+ "type": "git",
69
+ "url": "git+https://github.com/getmcpads-com/meta-ads-mcp-server.git"
70
+ },
71
+ "homepage": "https://github.com/getmcpads-com/meta-ads-mcp-server#readme",
72
+ "bugs": {
73
+ "url": "https://github.com/getmcpads-com/meta-ads-mcp-server/issues"
74
+ },
75
+ "author": "GetMCPAds (https://www.getmcpads.com)",
76
+ "publishConfig": {
77
+ "access": "public"
78
+ }
79
+ }