40 lines
849 B
JSON
40 lines
849 B
JSON
{
|
|
"name": "@clawdbot/meta-ads-mcp",
|
|
"version": "1.0.0",
|
|
"description": "Model Context Protocol server for Meta Marketing API with lazy-loading architecture",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"start": "node dist/index.js",
|
|
"dev": "tsx src/index.ts",
|
|
"watch": "tsc --watch",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"keywords": [
|
|
"mcp",
|
|
"meta",
|
|
"facebook",
|
|
"instagram",
|
|
"ads",
|
|
"marketing"
|
|
],
|
|
"author": "Clawdbot",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.0.4",
|
|
"dotenv": "^16.4.7",
|
|
"node-fetch": "^3.3.2",
|
|
"zod": "^3.23.8"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.10.5",
|
|
"tsx": "^4.19.2",
|
|
"typescript": "^5.7.2"
|
|
}
|
|
}
|