Server data from the Official MCP Registry
AI social media management: create, schedule, approve, and analyze posts across 11 platforms.
AI social media management: create, schedule, approve, and analyze posts across 11 platforms.
Remote endpoints: streamable-http: https://app.aidelly.ai/api/mcp/public-api
Valid MCP server (1 strong, 1 medium validity signals). No known CVEs in dependencies. Imported from the Official MCP Registry.
Endpoint verified · Requires authentication · 1 issue found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Remote Plugin
No local installation needed. Your AI client connects to the remote endpoint directly.
Add this to your MCP configuration to connect:
{
"mcpServers": {
"io-github-wilzer-aidelly": {
"url": "https://app.aidelly.ai/api/mcp/public-api"
}
}
}From the project's GitHub README.
Automate Aidelly social media management directly from Claude Code. Create, schedule, and manage posts across all connected platforms with AI-powered MCP tools.
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.)
/plugin marketplace add Aidelly/claude-plugin
Then configure your API key (see Setup below).
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.
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
macOS/Linux (shell):
# Add to ~/.zshrc, ~/.bashrc, or equivalent
echo 'export AIDELLY_API_KEY=sk_...' >> ~/.zshrc
source ~/.zshrc
Windows (PowerShell):
[Environment]::SetEnvironmentVariable('AIDELLY_API_KEY', 'sk_...', 'User')
In Claude Code, run:
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"
}
AIDELLY_API_KEY is set correctlyAIDELLY_WORKSPACE_ID, verify it matches a workspace you have access to.claude-plugin/
└─ plugin.json # Plugin metadata
.mcp.json # MCP server configuration
skills/
└─ aidelly-social/
└─ SKILL.md # Tool documentation & examples
The plugin connects to https://app.aidelly.ai/api/mcp/public-api (Aidelly's MCP HTTP endpoint).
Authentication: Authorization: Bearer <API_KEY> (required)
Tools exposed by the server:
aidelly_create_post – Instant post publishaidelly_create_scheduled_post – Schedule a postaidelly_list_pending_approvals – Check pending approvalsaidelly_post_approvals_id_action – Approve/reject postsaidelly_get_analytics_summary – Pull engagement metricsaidelly_get_post – Get post detailsaidelly_upload_media – Upload image/videoThis repository is designed to be published to Claude Code plugin marketplaces. Follow the checklist below for each distribution channel.
Status: [Pending / In progress / Published]
Submission checklist:
How to submit:
Status: [Pending / In progress / Published]
Registry: https://smithery.ai or https://registry.smithery.ai
Submission checklist:
How to submit:
mcp.so – https://mcp.so PulseMCP – https://pulsemcp.com Glama – https://glama.ai
Submission checklist (each):
How to submit:
Before submitting to any marketplace:
# 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.json and 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
[License TBD – check Aidelly open-source policy]
Last updated: 2026-07-13
Plugin version: 0.1.0
MCP protocol version: 2024-11-05+
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.