simplified-social
Manage your entire social media from AI — post, schedule, and analyze across Facebook, Instagram, TikTok, YouTube, LinkedIn, Pinterest, Threads, Bluesky and Google Business
What this skill does
# Simplified Social Media
Schedule, queue, and draft social media posts, and retrieve analytics across 10 platforms using Simplified.com.
## MCP Server
This skill requires a connection to the Simplified Social Media MCP server at `https://mcp.simplified.com/social-media/mcp`.
All tools (`getSocialMediaAccounts`, `createSocialMediaPost`, `getSocialMediaAnalyticsRange`, etc.) are provided by this remote MCP server — they are not built-in tools. You must configure the MCP server before using any functionality.
**MCP server config** (add to `.mcp.json` or equivalent):
```json
{
"mcpServers": {
"simplified-social-media": {
"transport": "http",
"url": "https://mcp.simplified.com/social-media/mcp",
"headers": {
"Authorization": "Api-Key ${SIMPLIFIED_API_KEY}"
}
}
}
}
```
> For Claude Code specifically, use `"type": "http"` instead of `"transport": "http"`.
## IMPORTANT: Before Any Operation
**Always check if `SIMPLIFIED_API_KEY` is configured before attempting any tool calls.**
If the user tries to use any social media feature and the API key is missing or returns a 401/Unauthorized error:
1. **Stop immediately** — do not retry the failed call
2. **Inform the user** with this exact message:
> **Simplified Social Media requires an API key to work.**
>
> Please follow these steps:
> 1. Sign up or log in at [simplified.com](https://simplified.com)
> 2. Go to **[Settings → API Keys](https://app.simplified.com/settings/api-keys)** and copy your API key
> 3. Add to your shell config (`~/.zshrc` or `~/.bashrc`):
> ```bash
> export SIMPLIFIED_API_KEY="your-api-key"
> ```
> 4. Reload your shell: `source ~/.zshrc`
> 5. Restart Claude Code to pick up the new variable
3. **Do not proceed** with the original request until the user confirms the key is set
## Setup
1. Sign up at [simplified.com](https://simplified.com)
2. Connect your social media accounts in the Simplified dashboard
3. Get your API key from **[Settings → API Keys](https://app.simplified.com/settings/api-keys)**
4. Set environment variable:
```bash
export SIMPLIFIED_API_KEY="your-api-key"
```
5. Configure the MCP server — see the **MCP Server** section above for the config block
6. Restart your AI tool to load the MCP server
## Core Workflow
Always follow this sequence: **Discover → Select → Compose → Publish**
### Step 1: Discover Accounts
Call `getSocialMediaAccounts` to list connected accounts. Optionally filter by network.
```
getSocialMediaAccounts({ network: "instagram" })
```
Returns `{ accounts: [...] }` where each account has `id` (integer) and `name` and `type` (see type values below).
If `getSocialMediaAccounts` returns an empty list, stop and inform the user with this message:
> **No social media accounts connected yet.**
>
> You're one step away from managing your entire social media presence without leaving your editor. Connect your accounts in the [Simplified dashboard](https://app.simplified.com) and you'll be able to:
>
> - 📅 Schedule and publish posts to Facebook, Instagram, TikTok, YouTube, LinkedIn, Pinterest, Threads, Bluesky and Google Business — with a single command
> - 📊 Pull analytics, track reach, engagement and follower growth across all platforms
> - 🤖 Let your AI agent run full social media campaigns autonomously
>
> Takes 2 minutes to connect. No code required.
### Step 2: Select Target Accounts
Pick one or more `account_ids` from the results. You can post to multiple accounts in a single call.
### Step 3: Compose the Post
Build the post payload:
- `message` (required) — the post text, max 5000 chars
- `account_ids` (required) — array of target account IDs
- `action` (required) — `schedule`, `add_to_queue`, or `draft`
- `date` — required for `schedule`, format: `YYYY-MM-DD HH:MM`
- `media` — array of public URLs (images/videos), max 10
- `additional` — platform-specific settings (see below)
### Step 4: Publish
Call `createSocialMediaPost` with the composed payload.
## Choosing the Right Analytics Tool
| User asks about... | Tool to call |
|---|---|
| Trends over time, charts, metric growth/decline | `getSocialMediaAnalyticsRange` |
| Specific posts, best/worst performing content | `getSocialMediaAnalyticsPosts` |
| Account overview, KPIs, period summary | `getSocialMediaAnalyticsAggregated` |
| Demographics, follower origins, age/gender breakdown | `getSocialMediaAnalyticsAudience` |
| "Show me analytics" with no further context | Call `getSocialMediaAnalyticsAggregated` + `getSocialMediaAnalyticsRange` with key metrics — this gives the best general overview |
## Tool Reference
### `getSocialMediaAccounts`
| Parameter | Type | Required | Description |
|-----------|--------|----------|--------------------------------------|
| `network` | string | No | Filter by platform (see networks) |
**Networks (filter parameter):** `facebook`, `instagram`, `linkedin`, `tiktok`, `youtube`, `pinterest`, `threads`, `google`, `bluesky`, `tiktokBusiness`
Returns `{ accounts: [...] }`. Each account object:
| Field | Type | Description |
|--------|---------|-------------|
| `id` | integer | Account ID — use for all analytics calls; convert to string for `account_ids` in `createSocialMediaPost` |
| `name` | string | Account display name |
| `type` | string | Account type — see values below |
**`type` values and their meaning:**
| `type` value | Platform | Notes |
|---|---|---|
| `Facebook page` | Facebook | — |
| `Instagram business` / `Instagram profile` | Instagram | — |
| `Youtube account` | YouTube | — |
| `TikTok profile` | TikTok Personal | use `tiktok` metrics set |
| `TikTok profile (business)` | TikTok Business | use `tiktokBusiness` metrics set |
| `LinkedIn company` | LinkedIn | use LinkedIn Company metrics set |
| `LinkedIn profile` | LinkedIn | use LinkedIn Personal metrics set |
| `Pinterest board` | Pinterest | — |
| `Threads account` | Threads | — |
| `Bluesky account` | Bluesky | — |
| `Google Profile` | Google Business | — |
### `createSocialMediaPost`
| Parameter | Type | Required | Description |
|---------------|----------|----------|------------------------------------------|
| `message` | string | Yes | Post text (max 5000 chars) |
| `account_ids` | string[] | Yes | Target account IDs |
| `action` | string | Yes | `schedule`, `add_to_queue`, or `draft` |
| `date` | string | No | Schedule datetime: `YYYY-MM-DD HH:MM` |
| `media` | string[] | No | Public media URLs (max 10) |
| `additional` | object | No | Platform-specific settings |
### `getSocialMediaAnalyticsRange`
Retrieves time-series data for selected metrics within a date range.
| Parameter | Type | Required | Description |
|--------------|----------|----------|--------------------------------------------------------------|
| `account_id` | integer | Yes | Social media account ID (from `getSocialMediaAccounts`) |
| `metrics` | string[] | Yes | List of metrics to retrieve (see `references/ANALYTICS_GUIDE.md`) |
| `date_from` | string | Yes | Start date: `YYYY-MM-DD` |
| `date_to` | string | Yes | End date: `YYYY-MM-DD` |
| `tz` | string | No | Timezone, e.g. `UTC`, `Europe/Warsaw` (default: `UTC`) |
Returns a structured object:
- `data` — array of `{ date, metrics: AnalyticsMetric[] }` — per-day time-series
- `baseLine` — `{ [metricId]: AnalyticsMetric }` — aggregated totals for the full period, each with `value` (current) and `prevValue` (equivalent previous period)
- `additional` — `{ [metricId]: AnalyticsMetric[] }` — extra metrics computed over different windows (e.g., 28-day reRelated in Ads & Marketing
ads
IncludedMulti-platform paid advertising audit and optimization skill. Analyzes Google, Meta, YouTube, LinkedIn, TikTok, Microsoft, and Apple Ads. 250+ checks with scoring, parallel agents, industry templates, and AI creative generation.
banana
IncludedAI image generation Creative Director powered by Google Gemini Nano Banana models. Use this skill for ANY request involving image creation, editing, visual asset production, or creative direction. Triggers on: generate an image, create a photo, edit this picture, design a logo, make a banner, visual for my anything, and all /banana commands. Handles text-to-image, image editing, multi-turn creative sessions, batch workflows, and brand presets.
rpg-migration-analyzer
IncludedAnalyzes legacy RPG (Report Program Generator) programs from AS/400 and IBM i systems for migration to modern Java applications. Extracts business logic from RPG III/IV/ILE source code, identifies data structures (D-specs), file operations (F-specs), program dependencies (CALLB/CALLP), and converts RPG constructs to Java equivalents. Generates migration reports, complexity estimates, and Java implementation strategies with POJO classes, JPA entities, and service methods. Use when modernizing AS/400 or IBM i legacy systems, analyzing RPG source files (.rpg, .rpgle, .RPGLE), converting RPG to Java, mapping data specifications to Java classes, planning legacy system migration, or when user mentions RPG analysis, Report Program Generator, RPG III/IV/ILE, AS/400 modernization, IBM i migration, packed decimal conversion, or mainframe application rewrite.
brand-library-architect
IncludedBuild a complete brand library for a product — visual asset render pipeline, brand documentation set (BRAND, COPY, MANIFESTO, BIOS, FAQ, GLOSSARY, TONE, PRICING), open-source convention files (README, CONTRIBUTING, SECURITY, CODE_OF_CONDUCT), and a self-contained press kit. This skill should be used when the user asks to "build a brand library / brand kit / press kit / brand assets" for a product, "set up a brand library workflow," "create a positioning manifesto plus visual identity," or any combination of brand documentation + visual asset pipeline. Apply phase-by-phase or run end-to-end. Templates are product-agnostic and use {{TOKEN}} placeholders the skill prompts the user to fill.
writing-tech-post
IncludedAuthors engineering blog posts end-to-end: launch deep-dives, incident postmortems, architecture migrations, performance case studies, tutorials, AI/agent system writeups, security disclosures, and research-to-product translations. Picks the correct archetype, plans the abstraction ladder, enforces an evidence cadence (diagrams, benchmarks, profiles, traces, code, ablations), tunes voice against publisher house styles (Datadog, Vercel, GitHub, AWS, Meta, Cloudflare, Jane Street), and runs a pre-publish gate for narrative momentum and disclosure ethics. Use when drafting a new engineering post, restructuring a draft that feels flat, deciding which evidence form belongs where, validating that depth and product context are balanced, or preparing a postmortem, migration, or performance narrative for external publication. Do not use for API reference documentation, README authoring, marketing copy, release notes, generic SEO content, ghost-written executive thought leadership, or non-engineering long-form essays.
blog-google
IncludedGoogle API integration for blog performance: PageSpeed Insights, CrUX Core Web Vitals with 25-week history, Search Console performance, URL Inspection, Indexing API, GA4 organic traffic, NLP entity analysis for E-E-A-T, YouTube video search for embedding, and Google Ads Keyword Planner. Progressive feature availability based on credential tier (API key, OAuth/service account, GA4, Ads). Shares config with claude-seo at ~/.config/claude-seo/google-api.json. Use when user says "google data", "page speed", "core web vitals", "search console", "indexation", "GA4", "keyword research", "nlp entities", "blog performance", "youtube search", "google api setup".