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.
- package/dist/cli.js +2 -3
- 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
|
-
|
|
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