
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
A Model Context Protocol (MCP) server that provides read-only access to Taboola's Realize API, enabling AI assistants to analyze campaigns, retrieve performance data, and generate reports through natural language.
Add to Cursor Settings → Features → Model Context Protocol:
{
"mcpServers": {
"realize-mcp": {
"command": "realize-mcp-server",
"env": {
"REALIZE_CLIENT_ID": "your_client_id",
"REALIZE_CLIENT_SECRET": "your_client_secret"
}
}
}
}
Add to your claude_desktop_config.json
:
{
"mcpServers": {
"realize-mcp": {
"command": "realize-mcp-server",
"env": {
"REALIZE_CLIENT_ID": "your_client_id",
"REALIZE_CLIENT_SECRET": "your_client_secret"
}
}
}
}
pip install realize-mcp
# Set credentials
export REALIZE_CLIENT_ID="your_client_id"
export REALIZE_CLIENT_SECRET="your_client_secret"
User: "Show me campaigns for Marketing Corp"
AI:
1. Searches accounts for "Marketing Corp"
2. Retrieves campaigns using the found account_id
3. Returns campaign list with performance metrics
Important: All operations require getting account_id
values from search_accounts
first - never use numeric IDs directly.
search_accounts
- [REQUIRED FIRST] Find accounts and get account_id values for other tools (with pagination support: page_size max 10)get_all_campaigns
- List all campaigns for an accountget_campaign
- Get detailed campaign informationget_campaign_items
- List campaign creative itemsget_campaign_item
- Get specific item detailsget_top_campaign_content_report
- Top performing content with sorting & paginationget_campaign_breakdown_report
- Campaign performance breakdown with sorting & paginationget_campaign_history_report
- Historical campaign data with paginationget_campaign_site_day_breakdown_report
- Site/day performance breakdown with sorting & paginationget_auth_token
- Authenticate with Realize APIget_token_details
- Check token informationUser: "Show campaigns for account 12345"
AI Process:
Step 1: search_accounts("12345") → Returns account_id: "advertiser_12345_prod"
Step 2: get_all_campaigns(account_id="advertiser_12345_prod")
Result: List of campaigns with details
User: "Get campaign performance for Marketing Corp last month"
AI Process:
Step 1: search_accounts("Marketing Corp") → account_id: "mktg_corp_001"
Step 2: get_campaign_breakdown_report(
account_id="mktg_corp_001",
start_date="2024-01-01",
end_date="2024-01-31"
)
Result: CSV report with campaign metrics
User: "Show top 20 performing content items"
AI Process:
get_top_campaign_content_report(
account_id="account_id_from_search",
start_date="2024-01-01",
end_date="2024-01-31",
page_size=20,
sort_field="spent",
sort_direction="DESC"
)
Result: Top content sorted by spend
All campaign and report tools require account_id
values from search_accounts
:
✅ Correct Workflow:
1. search_accounts("company name" or "numeric_id")
2. Extract account_id from response
3. Use account_id in other tools
❌ Incorrect:
get_all_campaigns(account_id="12345") # Numeric IDs won't work
clicks
, spent
, or impressions
If you encounter issues with the MCP server, try this quick diagnostic:
# Test server manually
REALIZE_CLIENT_ID=test REALIZE_CLIENT_SECRET=test realize-mcp-server
You should see: INFO:realize.realize_server:Starting Realize MCP Server...
📖 For comprehensive information, see design.md:
Licensed under the Apache License 2.0. See LICENSE for details.
Realize MCP Server - Safe, efficient, read-only access to Taboola's advertising platform through natural language.
FAQs
MCP server for Taboola's Realize API - campaign analysis and reporting
We found that realize-mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
/Security News
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.