Aidelly
About
Agent-operated social media management for agencies — publish, schedule, approve, and analyze posts across 11 networks (www.aidelly.ai).
Details
- Author
- aidelly
- Categories
- Marketing, Other, AI
Jump to
Install via Claude Code Plugin Marketplace
/plugin marketplace add Aidelly/claude-plugin
Then configure your API key (seeSetupbelow).
Clone this repository and point Claude Code to the local plugin path:
git clone https://github.com/Aidelly/claude-plugin cd claude-plugin # Add to Claude Code plugin settings
Note:Ensure.mcp.jsonis committed in your local clone. The Aidelly monorepo ignores*.mcp.jsonfiles, so the publicAidelly/claude-pluginrepository explicitly commits it. If you see a missing.mcp.jsonafter cloning, rungit check-ignore .mcp.json— if no output, it's been properly committed.
- Log in toAidelly Dashboard
- Go toSettings → API Keys
- Create a new API key (or use an existing one)
- Copy the key
Set the following environment variables in your Claude Code environment:
export AIDELLY_API_KEY=your_api_key_here export AIDELLY_WORKSPACE_ID=your_workspace_id # Optional; required if managing multiple workspaces
# Add to ~/.zshrc, ~/.bashrc, or equivalent echo 'export AIDELLY_API_KEY=sk_...' >> ~/.zshrc source ~/.zshrc
[Environment]::SetEnvironmentVariable('AIDELLY_API_KEY', 'sk_...', 'User')
Use the MCP server to list accounts or get workspace info.
The plugin should successfully connect and list your Aidelly workspace data.
Create a new post on Instagram with the text "Hello world!" and upload media.
Schedule a post for tomorrow at 2 PM with approval required.
List all posts waiting for approval and approve the first one.
Get the top 10 posts from the last 30 days and their engagement metrics.
Full endpoint reference and examples:skills/aidelly-social/SKILL.md
The plugin wires to Aidelly's MCP server via.mcp.json:
{ "mcpServers": { "aidelly": { "url": "https://app.aidelly.ai/api/mcp/public-api", "transportType": "http", "auth": { "type": "headers", "headers": { "Authorization": "Bearer ${AIDELLY_API_KEY}", "x-aidelly-workspace-id": "${AIDELLY_WORKSPACE_ID}" } } } } }
Metadata for Claude Code plugin marketplace:
{ "name": "aidelly", "description": "Aidelly social content automation for Claude Code", "author": "Aidelly", "version": "0.1.0" }
- VerifyAIDELLY_API_KEYis set correctly
- Confirm the API key is active in Aidelly Dashboard
- Check that the workspace exists
- Ensure your API key has access to the workspace
- If usingAIDELLY_WORKSPACE_ID, verify it matches a workspace you have access to
- The plugin enforces 120 tool calls per minute per API key
- Retry after a few seconds with exponential backoff
- Instagram/TikTok deletion:These platforms don't allow post deletion via API
- LinkedIn org routing:Double-check that the author target matches your account type (member vs. organization)
- Text too long:Verify text length against platform limits in the skill documentation
.claude-plugin/ └─ plugin.json # Plugin metadata .mcp.json # MCP server configuration skills/ └─ aidelly-social/ └─ SKILL.md # Tool documentation & examples
The plugin connects tohttps://app.aidelly.ai/api/mcp/public-api(Aidelly's MCP HTTP endpoint).
Authentication:Authorization: Bearer <API_KEY>(required)
- aidelly_create_post– Instant post publish
- aidelly_create_scheduled_post– Schedule a post
- aidelly_list_pending_approvals– Check pending approvals
- aidelly_post_approvals_id_action– Approve/reject posts
- aidelly_get_analytics_summary– Pull engagement metrics
- aidelly_get_post– Get post details
- aidelly_upload_media– Upload image/video
- [Full list of available tools
This repository is designed to be published to Claude Code plugin marketplaces. Follow the checklist below for each distribution channel.
Automate Aidelly social media management directly from Claude Code. Create, schedule, and manage posts across all connected platforms with AI-powered MCP tools.
- Create & Schedule Posts– Publish instantly or schedule for later across multiple platforms
- Approval Workflows– Require and manage post approvals before publishing
- Analytics– Pull engagement metrics and top-performing content
- Multi-Platform Support– Instagram, Facebook, LinkedIn, Twitter/X, TikTok, YouTube, Pinterest, Bluesky, Threads, Mastodon, Google Business
- Media Upload– Fetch and upload images/videos directly
Sign-in is one click.The Aidelly MCP server supports OAuth 2.1 with PKCE and dynamic client registration, so Claude walks you through an Aidelly login and consent screen automatically — no API key or workspace ID to copy. (An API-key header remains supported for scripted/headless use.)
Install via Claude Code Plugin Marketplace
/plugin marketplace add Aidelly/claude-plugin
Then configure your API key (seeSetupbelow).
Clone this repository and point Claude Code to the local plugin path:
git clone https://github.com/Aidelly/claude-plugin cd claude-plugin # Add to Claude Code plugin settings
Note:Ensure.mcp.jsonis committed in your local clone. The Aidelly monorepo ignores*.mcp.jsonfiles, so the publicAidelly/claude-pluginrepository explicitly commits it. If you see a missing.mcp.jsonafter cloning, rungit check-ignore .mcp.json— if no output, it's been properly committed.
- Log in toAidelly Dashboard
- Go toSettings → API Keys
- Create a new API key (or use an existing one)
- Copy the key
Set the following environment variables in your Claude Code environment:
export AIDELLY_API_KEY=your_api_key_here export AIDELLY_WORKSPACE_ID=your_workspace_id # Optional; required if managing multiple workspaces
# Add to ~/.zshrc, ~/.bashrc, or equivalent echo 'export AIDELLY_API_KEY=sk_...' >> ~/.zshrc source ~/.zshrc
[Environment]::SetEnvironmentVariable('AIDELLY_API_KEY', 'sk_...', 'User')
Use the MCP server to list accounts or get workspace info.
The plugin should successfully connect and list your Aidelly workspace data.
Create a new post on Instagram with the text "Hello world!" and upload media.
Schedule a post for tomorrow at 2 PM with approval required.
List all posts waiting for approval and approve the first one.
Get the top 10 posts from the last 30 days and their engagement metrics.
Full endpoint reference and examples:skills/aidelly-social/SKILL.md
The plugin wires to Aidelly's MCP server via.mcp.json:
{ "mcpServers": { "aidelly": { "url": "https://app.aidelly.ai/api/mcp/public-api", "transportType": "http", "auth": { "type": "headers", "headers": { "Authorization": "Bearer ${AIDELLY_API_KEY}", "x-aidelly-workspace-id": "${AIDELLY_WORKSPACE_ID}" } } } } }
Metadata for Claude Code plugin marketplace:
{ "name": "aidelly", "description": "Aidelly social content automation for Claude Code", "author": "Aidelly", "version": "0.1.0" }
- VerifyAIDELLY_API_KEYis set correctly
- Confirm the API key is active in Aidelly Dashboard
- Check that the workspace exists
- Ensure your API key has access to the workspace
- If usingAIDELLY_WORKSPACE_ID, verify it matches a workspace you have access to
- The plugin enforces 120 tool calls per minute per API key
- Retry after a few seconds with exponential backoff
- Instagram/TikTok deletion:These platforms don't allow post deletion via API
- LinkedIn org routing:Double-check that the author target matches your account type (member vs. organization)
- Text too long:Verify text length against platform limits in the skill documentation
.claude-plugin/ └─ plugin.json # Plugin metadata .mcp.json # MCP server configuration skills/ └─ aidelly-social/ └─ SKILL.md # Tool documentation & examples
The plugin connects tohttps://app.aidelly.ai/api/mcp/public-api(Aidelly's MCP HTTP endpoint).
Authentication:Authorization: Bearer <API_KEY>(required)
- aidelly_create_post– Instant post publish
- aidelly_create_scheduled_post– Schedule a post
- aidelly_list_pending_approvals– Check pending approvals
- aidelly_post_approvals_id_action– Approve/reject posts
- aidelly_get_analytics_summary– Pull engagement metrics
- aidelly_get_post– Get post details
- aidelly_upload_media– Upload image/video
- Full list of available tools
This repository is designed to be published to Claude Code plugin marketplaces. Follow the checklist below for each distribution channel.
1. Anthropic Claude Code Plugin Directory
Status:[Pending / In progress / Published]
- README.md complete with features, installation, setup
- .claude-plugin/plugin.json valid and descriptive
- .mcp.json correctly configured for production MCP endpoint
- Skills documentation comprehensive with examples
- All JSON files validate (no parse errors)
- Version bumped to match release (semver)
- LICENSE file included (if required)
- Documentation reviewed for accuracy
- Contact Anthropic atplugins@anthropic.comwith:
- GitHub repository link
- Brief description of plugin capabilities
- API authentication requirements
Status:[Pending / In progress / Published]
Registry:https://smithery.aiorhttps://registry.smithery.ai
- Repository public on GitHub
- .mcp.json follows MCP spec v1.0+
- Version in package.json matches .claude-plugin/plugin.json
- README includes authentication setup
- Endpoint URL is production-ready (https://)
- Rate limits documented
- Error handling documented
- Test credentials available for verification (optional)
- Fork the MCP registry (https://github.com/smithery/smithery-registry)
- Add entry in registries.json (or equivalent)
- Include metadata: name, version, description, auth requirements, URL
- Open pull request
- Address review feedback
mcp.so–https://mcp.soPulseMCP–https://pulsemcp.comGlama–https://glama.ai
- Plugin discoverable via their search
- Correct metadata (name, description, author)
- Production MCP endpoint working
- Authentication method documented
- Contact/support information provided
- Each registry has its own submission process (check their websites)
- Generally requires GitHub repo + metadata + contact info
# 1. Validate JSON files jq . .claude-plugin/plugin.json jq . .mcp.json # 2. Verify MCP endpoint connectivity curl -H "Authorization: Bearer $AIDELLY_API_KEY" \ https://app.aidelly.ai/api/mcp/public-api \ -X POST \ -d '{"jsonrpc":"2.0","method":"initialize","id":1}' \ -H "Content-Type: application/json" # 3. Test API key setup export AIDELLY_API_KEY=test_key echo "API key set: $AIDELLY_API_KEY" # 4. Review skill documentation cat skills/aidelly-social/SKILL.md | wc -l # Should be > 200 lines
When bumping version in.claude-plugin/plugin.jsonand README:
## Version 0.1.0 Initial release - Create, schedule, and publish posts across multiple platforms - Approval workflow integration - Analytics summary pull - Media upload support - 11 platforms supported
- Issues:https://github.com/Aidelly/claude-plugin/issues
- Docs:https://docs.aidelly.ai
- Email:support@aidelly.ai
[License TBD – check Aidelly open-source policy]
Last updated:2026-07-13
Plugin version:0.1.0
MCP protocol version:2024-11-05+
Free MCP that drives an audit of your marketing. Your AI connects, adsOS digs through your ads, email and site, and hands back a growth plan you can run today.
Schedule and publish social media posts to 12 platforms from Claude or ChatGPT, with inline post-preview widgets, in-chat media upload, analytics, and comment management.
An AI-powered bridge connecting assistants like Claude and ChatGPT to RADAAR for managing posts, inboxes, analytics, and social listening across 20+ channels using natural language.
Generate random word pairs for the Imposter party game directly via Claude or Cursor. Let AI host your next social deduction game!
Schedule posts to multi social platforms from Claude, Cursor, or any MCP-compatible AI agent.
A shared campaign canvas for you and your AI agent: briefed by your brand rules, gated by your approval.
Run your Linkedin account from claude or chatgpt
Chat with any brand's Meta (Facebook/Instagram) ads inside Claude — research a competitor's ad library, surface their longest-running winners, extract hooks/formats, and clone winning ads for your own brand.
Hosted Amazon Seller & Vendor MCP server. Connect Claude, ChatGPT, Cursor, Codex, Gemini, GitHub Copilot to live Amazon SP-API and Ads API data
The official remote MCP server for GEOly — AI brand visibility (GEO) for your agent. GEOly tracks how brands are mentioned and cited across AI engines (ChatGPT, Gemini, Perplexity, Grok, Google AI), and this server puts that data — visibility KPIs, competitor share, citation sources, market intelligence, and site audits — directly into Claude, Cursor, Codex, VS Code, or any MCP client.
Market & competitive intelligence for Claude & AI assistants: trends, alerts, keywords & more.
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.




