Free beta. The Marky API is free to use while it’s in beta. Paid plans are
coming later, and we’ll give you plenty of notice before any charges begin.
CLAUDE.md instead.
The MCP setup works for both the Claude Code CLI and the Claude Desktop
app (this is the same app used for Cowork). Pick your tool in the tabs below.
Get your API key
Open app.mymarky.ai/connect-agent — sign up or log in and yourmk_live_... key is created in one click (copy it right away; you
only see it once). No workspace setup needed first.
Prefer the manual route? Settings → API Keys
→ Create API Key while signed in — that’s also where you revoke keys.
Option A: MCP server (recommended)
Marky’s MCP server lives at one URL, and you sign in with your API key:- Claude Code CLI
- Claude Desktop app
Add Marky as an MCP server in one command. Replace That’s it. Claude Code now has Marky’s tools.
mk_live_YOUR_KEY with
the key you just created:list_businesses, get_business,
create_post, schedule_post, get_post, and more). Try:
“List my Marky businesses.”Claude will call
list_businesses and show your workspaces. Each one has an
id you’ll use as the business_id for everything else.
Option B: REST in your CLAUDE.md
If you’d rather not use MCP, add these instructions to your project’sCLAUDE.md and let Claude call the REST API with curl:
Example: a week of posts
Ask Claude Code:“Generate 5 posts about our spring coffee blend, then schedule one each weekday at 9am.”Claude will:
- Call
list_businessesto find yourbusiness_id. - Call
get_businessto read your brand voice, colors, and logo, then write the five captions itself. Marky’s own generation is not an MCP tool. - Call
create_postfor each caption. They land in the app with statusNEW. - Show them back with
list_posts(statusNEW) so you can check them. - Call
schedule_poston each one with the time you asked for.
Claude Cowork: install Marky skills
Marky also ships agent skills as plugins for Claude Cowork. Install them from theMarky-Team/marky-skills marketplace:
- Open the Claude Desktop App and navigate to the Cowork tab.
- Click on the Customize menu in the left sidebar to pull up your unified workspace hub.
- Open the Plugins tab and look down for the Personal plugins section.
- Click the ”+” button and select “Add marketplace”.
- Select “Add from a repository” and paste the GitHub repository handle (Marky-Team/marky-skills) or git URL.
- Once synced, browse the newly populated catalog and click “Install” on the specific plugin you want to activate.
Before you start
- Connect your social accounts first. Connecting an Instagram, Facebook, LinkedIn, etc. account is a one-time step in the Marky web app. The API can see your connected accounts but cannot add new ones.
- Keep your API key in
.env, not inCLAUDE.md. - Full reference: docs.mymarky.ai
- Send API feedback with
POST /api/feedback, or open a request.
