Ad Review Log MCP
Supports syncing the review database to Google Drive for backup and cross-machine access.
Integrates with OpenAI Codex CLI via MCP stdio transport, allowing agents to store and search ad creative reviews.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Ad Review Log MCPStore a review for the 'Holiday Bundle' ad: score 92, funnel stage Awareness."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Ad Review Log MCP
A local MCP (Model Context Protocol) server that acts as a persistent log of ad creative reviews. It stores each review's ad name, funnel stage, score, media link, and full review text so agents can look back at how past creatives were scored.
Works with Cursor IDE, OpenAI Codex CLI, Claude Desktop, and any MCP-compatible client.
How It Works
┌─────────────┐ ┌──────────────────────┐
│ Cursor IDE │── stdio ──────────────►│ │
├─────────────┤ │ ad-review-log │
│ Codex CLI │── stdio ──────────────►│ │
├─────────────┤ │ SQLite + FTS5 │
│ Claude │── stdio ──────────────►│ ~/.ad-review-log/ │
└─────────────┘ └──────────────────────┘Each agent spawns its own process instance. All instances read/write the same SQLite database at ~/.ad-review-log/reviews.db. SQLite WAL mode ensures safe concurrent access.
Related MCP server: joa
Requirements
Node.js 18+
macOS, Linux, or Windows
Installation
git clone https://github.com/YOUR_USERNAME/ad-review-log.git
cd ad-review-log
npm install
npm run buildAgent Integration
Cursor IDE
Add to ~/.cursor/mcp.json (inside the mcpServers object):
{
"mcpServers": {
"ad-review-log": {
"command": "node",
"args": ["/absolute/path/to/ad-review-log/dist/index.js"]
}
}
}Optionally, install the Cursor skill for better agent behavior:
cp -r integration/cursor-skill ~/.cursor/skills/ad-review-logAnd add the rule to your projects:
cp integration/cursor-rule.md your-project/.cursor/rules/ad-review-log.mdOpenAI Codex CLI
Add to ~/.codex/config.toml:
[mcp_servers.ad-review-log]
command = "node"
args = ["/absolute/path/to/ad-review-log/dist/index.js"]Then append the review instructions to your Codex instructions file:
cat integration/codex-instructions.md >> ~/.codex/instructions.mdClaude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"ad-review-log": {
"command": "node",
"args": ["/absolute/path/to/ad-review-log/dist/index.js"]
}
}
}Restart Claude Desktop after editing the config.
Any MCP-Compatible Client
Any tool supporting MCP stdio transport can use this server by spawning:
node /path/to/ad-review-log/dist/index.jsThe server communicates via JSON-RPC over stdin/stdout following the MCP specification.
Tools
store_review
Store an ad creative review.
Parameter | Required | Description |
ad_name | Yes | Name or identifier of the ad creative |
funnel_stage | Yes |
|
score | Yes | Overall review score, 0-100 |
full_review | Yes | The full review text / teardown |
media_link | No | Link to the ad media (video, image, carousel, Drive URL) |
timestamp | No | Review timestamp (defaults to now) |
search_reviews
Full-text search across all reviews.
Parameter | Required | Description |
query | Yes | Free-text search (ad name, keyword, review phrase) |
funnel_stage | No | Filter by funnel stage |
ad_name | No | Filter by ad name (substring match) |
min_score | No | Only reviews with score >= this value |
max_score | No | Only reviews with score <= this value |
limit | No | Max results (default 10) |
get_context
Smart retrieval for the current review. Returns top-scoring reviews for the given funnel stages plus FTS matches against the task description.
Parameter | Required | Description |
funnel_stages | Yes | Array of funnel stages: |
task_description | No | What you are about to review (used for semantic match) |
ad_name | No | Ad name to look for related prior reviews |
list_reviews
Browse entries with optional filters.
Parameter | Required | Description |
funnel_stage | No | Filter by funnel stage |
ad_name | No | Filter by ad name (substring match) |
min_score | No | Only reviews with score >= this value |
max_score | No | Only reviews with score <= this value |
limit | No | Max results (default 20) |
offset | No | Pagination offset |
update_review
Update an existing review.
Parameter | Required | Description |
id | Yes | The review ID to update |
(any field) | No | Any field from store_review can be updated |
delete_review
Remove an obsolete review.
Parameter | Required | Description |
id | Yes | The review ID to delete |
Database
Data is stored at ~/.ad-review-log/reviews.db (SQLite with FTS5).
The reviews table schema:
id | timestamp | ad_name | funnel_stage | score | media_link | full_reviewStorage Setup
After building, run the interactive setup to choose where data lives:
npm run setupYou will be prompted to choose:
Google Drive (macOS only) — symlinks
~/.ad-review-log/to your Google Drive folder. Data syncs automatically across machines.Local — stores data at
~/.ad-review-log/on disk (default).
You can re-run npm run setup at any time to switch between the two.
New machine setup
If you previously chose Google Drive:
Install Google Drive Desktop and sign in with the same account
Clone this repo,
npm install && npm run buildRun
npm run setupand select Google Drive — it will find your existing data
If Google Drive becomes unavailable (e.g. app not installed), the server automatically falls back to local storage instead of crashing.
Manual Inspection
sqlite3 ~/.ad-review-log/reviews.db
-- List recent reviews
SELECT id, ad_name, funnel_stage, score FROM reviews ORDER BY timestamp DESC LIMIT 10;
-- Search by keyword
SELECT * FROM reviews WHERE id IN (
SELECT rowid FROM reviews_fts WHERE reviews_fts MATCH 'basket'
);
-- Average score by funnel stage
SELECT funnel_stage, ROUND(AVG(score), 1) FROM reviews GROUP BY funnel_stage;Backup
The database is a single file. Back it up however you prefer:
cp ~/.ad-review-log/reviews.db ~/.ad-review-log/reviews.db.bakOr add ~/.ad-review-log/ to your backup tool (Time Machine, rsync, etc.).
Development
npm run dev # Run with tsx (hot reload)
npm run build # Build with tsup
npm run typecheck # Type-check without emitting
npm start # Run the built versionHow Agents Should Use This
At the start of a review: Call
get_contextwith the relevant funnel stagesBefore reviewing an ad: Call
search_reviewsto check for a prior reviewAfter reviewing an ad: Call
store_reviewwith all the detailsWhen re-scoring: Call
update_reviewto amend the existing entry
The integration/ folder contains skill files and rules that teach agents this workflow automatically.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/thevarungrovers/ad-review-log'
If you have feedback or need assistance with the MCP directory API, please join our Discord server