openads-ai 0.2.7 → 0.2.8

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.
Files changed (2) hide show
  1. package/dist/cli.js +2 -3
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -391,11 +391,10 @@ async function main() {
391
391
  args: useRtk ? ['uvx', 'adloop'] : ['adloop']
392
392
  };
393
393
  }
394
- // Inject Meta MCP server if token is present
394
+ // Inject Meta MCP server (remote SSE server) if token is present
395
395
  if (config.metaToken) {
396
396
  settings.mcpServers['meta-ads'] = {
397
- command: useRtk ? 'rtk' : 'npx',
398
- args: useRtk ? ['npx', '-y', '@meta/mcp-server'] : ['-y', '@meta/mcp-server'],
397
+ url: 'https://mcp.facebook.com/ads/sse',
399
398
  env: { META_ACCESS_TOKEN: config.metaToken }
400
399
  };
401
400
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openads-ai",
3
- "version": "0.2.7",
3
+ "version": "0.2.8",
4
4
  "description": "Open-source AI command center for digital marketers. Audit campaigns, write ad copy, and build strategies — from your terminal.",
5
5
  "main": "dist/cli.js",
6
6
  "bin": {