YG3 MCP
OfficialClick 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., "@YG3 MCPSet up a sandbox workspace for an HVAC company in Austin and show me the client snapshot."
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.
YG3 MCP — agent integration
Connect autonomous agents to YG3 marketing operations: content and SEO, outbound email, LinkedIn, and paid ads.
No signup required for agent builds. One HTTP call provisions a sandbox workspace and returns a Bearer token for MCP.
Path | Use when |
Owner has a YG3 account | |
Autonomous agent mid-build, CI, or SDK runtime |
Quick start (agent path)
# 1. Provision — no auth
curl -s -X POST https://agency.yg3.ai/api/v1/workspaces \
-H "Content-Type: application/json" \
-d '{"domain":"acme.com","industry":"Plumbing","location":"Tampa, FL"}'
# Response includes: token, mcp_endpoint, workspace.url, claim_endpoint
# 2. List MCP tools
curl -s -X POST https://mcp.yg3.ai/mcp \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
# 3. Call a tool
curl -s -X POST https://mcp.yg3.ai/mcp \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"get_client_snapshot","arguments":{}}}'Python example: examples/provision-and-call.py
Related MCP server: Google Ads MCP Server
Tools
197+ MCP tools (live count: https://mcp.yg3.ai/api/health). Common entry points:
Tool | Purpose |
| Confirm token scope |
| Full workspace state |
| Integration status |
| Industry, location, audience |
| Brand voice and positioning |
| Blog content on free subdomain |
| In-MCP docs ( |
Full catalog after connecting: tools/list or GET https://mcp.yg3.ai/api/health.
Human path (OAuth)
If the human already has a YG3 account:
Add
https://mcp.yg3.ai/mcpas a custom MCP connectorSign in when prompted
Setup guide: https://www.yg3.ai/connect
Claude Code:
claude mcp add --transport http yg3 https://mcp.yg3.ai/mcpCursor / VS Code MCP config: see examples/cursor-mcp.json
Agent path (no login)
Provision
POST https://agency.yg3.ai/api/v1/workspaces
Content-Type: application/json
{
"domain": "acme-plumbing.com",
"industry": "Plumbing",
"location": "Tampa, FL"
}Optional: "name" if you have no domain yet.
201 response:
Field | Meaning |
| id, slug, name, url |
| Bearer token for this workspace |
| JSON-RPC URL (also |
| Where the owner attaches later |
| 14 for unclaimed workspaces |
Do not provision again if you already hold a workspace token for the current job.
MCP
All calls are JSON-RPC 2.0 over HTTP:
POST https://mcp.yg3.ai/mcp
Authorization: Bearer <token>Methods: tools/list, tools/call, resources/read, initialize
Writes are two-step: call without confirm to get a plan, then call again with confirm: true and the same idempotency_key.
Claim (human takes over)
POST https://agency.yg3.ai/api/v1/workspaces/claim
Authorization: Bearer <workspace-token>
{"email": "owner@example.com", "password": "..."}If the email already has a YG3 account, omit password — the workspace attaches to that account.
Delete a test workspace
DELETE https://agency.yg3.ai/api/v1/workspaces
Authorization: Bearer <workspace-token>Only unclaimed workspaces. Archived, not erased.
Discovery
Resource | URL |
Live tool catalog | |
Agent guide (web) | |
Human connect page | |
Machine-readable index | |
MCP OAuth metadata |
After connecting, read platform docs via MCP:
yg3://docs/agent-integrationyg3://docs/getting-startedyg3://docs/tools-reference
Sandbox limits
Unclaimed workspaces are free-tier sandboxes by design:
Can: read everything, set profile/brand/voice, design site, write and publish articles to
blog-{slug}.yg3.aiCannot: custom domain, email sends, ad spend, LinkedIn posts
Expires: 14 days unless claimed
For agent frameworks
Copy AGENTS.md into your repo or point your agent at this README. It tells coding agents when and how to provision YG3 during a build.
ClawHub (OpenClaw)
Publishable skill: skills/yg3-marketing-mcp/SKILL.md
clawhub login
clawhub skill publish ./skills/yg3-marketing-mcp --slug yg3-marketing-mcp --name "YG3 Marketing MCP"Moltbook / curl-based agents
Curlable skill files (Moltbook-style): distribute/
Install doc:
distribute/skill.mdPeriodic routine:
distribute/heartbeat.mdMetadata:
distribute/skill.json
Agents can fetch from raw GitHub once this repo is public, or from https://www.yg3.ai/llms.txt.
Registry listings
File | Purpose |
Official MCP Registry ( | |
Glama directory indexing |
Registry namespace: io.github.YG3-ai/yg3-mcp
Related
Elysia LLM API (text/vision/image models): https://www.yg3.ai/for-developers
Quill (multi-AI thinking partner, PyPI): https://github.com/YG3-ai/quill
License
MIT — see LICENSE.
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.
Related MCP Servers
- FlicenseNot gradedqualityCmaintenanceAutomates marketing workflows across Google Ads, Meta Ads, and GA4, enabling content generation, scheduling, and analytics via a multi-agent pipeline.
- AlicenseNot gradedqualityCmaintenanceEnables AI assistants to manage, report, and analyze Google Ads campaigns securely with encrypted multi-client support, real-time API integrations, and audit trail logging.83MIT
- AlicenseNot gradedqualityCmaintenanceEnables AI agents to perform marketing operations like campaign management, content creation, and outreach, with a tiered approval model ensuring human oversight for consequential actions.MIT
- FlicenseNot gradedqualityBmaintenanceEnables AI agents to safely read and write files in a sandboxed workspace via natural language, with on-demand connection, CVE-hardened path confinement, injection resistance, and full audit logging.
Related MCP Connectors
AI marketing agent for Google Ads, Meta, GA4, TikTok, LinkedIn, Shopify, HubSpot and more.
SEO research, audits, backlinks, GSC, and content workflow tools for AI agents.
Build and run visual creative-production workflows from your AI agent.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/YG3-ai/yg3-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server