mcp-plus-tard
Plus Tard MCP
Verbinden Sie Ihren KI-Assistenten (Claude, Cursor, n8n…) mit Plus Tard, um Ihre Beiträge für Facebook, Instagram, LinkedIn, X/Twitter, TikTok, Threads, Bluesky und Google My Business einfach per Konversation zu planen.
Produktions-Endpoint : https://mcp.plus-tard.com/mcp/
Benutzerdokumentation : https://plus-tard.com/api-mcp
Demo in 30 Sekunden
Sie : „Plane einen Facebook-Beitrag auf meiner Seite Boréales für morgen um 10 Uhr: 'Hallo Welt!'“
Claude ruft automatisch auf:
list_accounts→ findet die Facebook-ID von „Boréales“
schedule_post(provider="facebook", page_id="…", planned_at="2026-05-05T10:00:00Z", text="Hallo Welt!")Plus Tard : ✅ Beitrag #1432 geplant für den 05.05.2026 um 10:00 Uhr.
Related MCP server: atlas-social-mcp
Tools (5)
Tool | Beschreibung |
| Überprüft, ob ein API-Schlüssel aktiv ist, und gibt dessen Metadaten zurück. |
| Listet alle mit Plus Tard verbundenen Social-Media-Konten auf. |
| Plant einen Beitrag auf einem einzelnen Netzwerk (1 Aufruf = 1 Netzwerk). |
| Erstellt einen neuen Benutzer und gibt eine OAuth-URL zurück. |
| Benutzerdetails: verbundene Anbieter und Unterkonten. |
Ressourcen (2)
URI | Inhalt |
| JSON-Liste der verbundenen Konten. |
| JSON-Details eines Benutzers. |
Clientseitige Installation
Claude Desktop
Fügen Sie dies zu ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) hinzu:
{
"mcpServers": {
"plus-tard": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.plus-tard.com/mcp/",
"--header",
"X-Api-Key:${PLUS_TARD_TOKEN}"
],
"env": {
"PLUS_TARD_TOKEN": "your_plus_tard_api_key"
}
}
}
}Claude Code (CLI)
claude mcp add plus-tard \
--transport http https://mcp.plus-tard.com/mcp/ \
--header "X-Api-Key: your_plus_tard_api_key"Claude.ai (Web)
Settings → Connectors → Add custom connector — URL https://mcp.plus-tard.com/mcp/, Header X-Api-Key: your_key.
Cursor / n8n
Gleiche URL und Header. Siehe die vollständige Dokumentation.
Self-Host (für Entwickler)
Stack
Python 3.12 · FastAPI ·
mcp[fastapi](Streamable HTTP transport)httpx · pydantic v2 · pydantic-settings
pytest · pytest-asyncio · respx
Architektur
Client (Claude/Cursor/n8n)
│ Streamable HTTP + X-Api-Key header
▼
MCP server (this repo)
│ X-Api-Key forwarded as-is
▼
Plus Tard Symfony APIJede MCP-Anfrage kommt mit einem X-Api-Key, der unverändert an die
Plus Tard API weitergeleitet wird. Keine Sitzungen, keine serverseitige Speicherung — jeder
Client verwendet seinen eigenen Schlüssel.
Lokale Entwicklung
git clone https://github.com/<votre-org>/plus-tard-mcp.git
cd plus-tard-mcp
python3.12 -m venv .venv && source .venv/bin/activate
pip install -e ".[dev]"
cp .env.example .env
# Édite .env : PLUS_TARD_BASE_URL=https://plus-tard.com
uvicorn main:app --reload --port 8001Der Server lauscht auf http://127.0.0.1:8001/mcp/. Schneller Test mit dem
MCP Inspector :
npx @modelcontextprotocol/inspector
# Transport: Streamable HTTP
# URL: http://127.0.0.1:8001/mcp/
# Header: X-Api-Key = ta_clef_plus_tardTests
pytest
# 24 passedDocker-Bereitstellung (Produktion)
Das Repository stellt Dockerfile + docker-compose.yml bereit, fertig für einen VPS
mit nginx-proxy +
acme-companion :
sudo docker compose up -d --buildSiehe deploy/README.md für Details (SSE-freundlicher
nginx-proxy-Schnipsel, Let's Encrypt TLS-Verwaltung, Updates).
Konfiguration
Variable | Beschreibung | Standard |
| Basis-URL der Plus Tard API | (erforderlich) |
| Bind-Host für uvicorn |
|
| Bind-Port für uvicorn |
|
Die Authentifizierung erfolgt pro Anfrage über den Header X-Api-Key —
keine Token werden serverseitig gespeichert.
Erlaubte Hosts
Das MCP SDK aktiviert einen Anti-DNS-Rebinding-Schutz, der nur whitelisted Hosts zulässt. Die Standard-Hosts sind:
mcp.plus-tard.comlocalhost,127.0.0.1(für die Entwicklung)
Um Ihre eigene Domain hinzuzufügen, bearbeiten Sie die Liste in main.py
(TransportSecuritySettings.allowed_hosts).
Projektstruktur
.
├── main.py # FastAPI + FastMCP + middleware X-Api-Key
├── app/
│ ├── config.py # Settings via pydantic-settings
│ ├── auth/ # Dependency X-Api-Key (réutilisable hors MCP)
│ ├── models/ # Schémas pydantic v2 (post, account, user)
│ ├── services/ # PlusTardClient async (httpx)
│ └── tools/ # 5 tools métier (str → str)
├── tests/ # 24 tests pytest-asyncio
├── deploy/
│ ├── README.md # Guide déploiement VPS
│ ├── vhost.d/ # Snippet nginx-proxy SSE
│ └── twig/ # Template Symfony pour la doc utilisateur
├── docs/index.html # Doc utilisateur statique (HTML)
├── Dockerfile
├── docker-compose.yml
└── pyproject.tomlSicherheit
Nur HTTPS in der Produktion (TLS via Let's Encrypt).
Keine Protokollierung von Beitragsinhalten oder API-Token.
Anti-DNS-Rebinding via
TransportSecuritySettingsdes MCP SDK.Isolierte Multi-Tenancy : Jede Anfrage wird mit einem eigenen httpx-Client verarbeitet, der am Ende der Anfrage geschlossen wird (kein Cross-User-Pooling).
Wenn Sie vermuten, dass ein Schlüssel kompromittiert wurde, widerrufen Sie ihn in Ihrem Plus Tard-Bereich.
Roadmap
[ ] Strukturierte Protokollierung (JSON, ohne Token oder Inhalte)
[ ] Ratenbegrenzung pro API-Schlüssel
[ ] Prometheus-Metriken
[ ] OAuth-Flow für Connectors (statt Copy-Paste-API-Schlüssel)
[ ] Unterstützung für
completion/completeMCP fürpage_id-Vorschläge (wartet auf ein Python-SDK, dasToolReferencebereitstellt)
Ideen und Beiträge sind willkommen — öffnen Sie ein Issue oder einen PR.
Nützliche Links
Plus Tard API (v1.2)
mcp-remote (stdio↔HTTP-Brücke für Claude Desktop)
Lizenz
MIT © 2026 Plus Tard — Boréales Créations.
Made with ❤️ in France.
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
- AlicenseAqualityDmaintenanceEnables AI assistants to manage scheduled social media posts and content automation across multiple platforms (X/Twitter, Reddit, LinkedIn, Instagram, TikTok, YouTube). Supports organizing campaigns into tracks, scheduling posts with natural language, and automating content workflows with local SQLite storage.712MIT
- AlicenseAqualityDmaintenanceAI-powered social media posting across 14 platforms. Post to Twitter, Instagram, TikTok, Facebook, LinkedIn, YouTube and more with one command. AI adapts content per platform, schedules posts, and generates 30-day content calendars.6MIT
- Alicense-qualityAmaintenanceSocial media scheduling and publishing for AI agents. 17 validation-first tools to post to X, LinkedIn, Instagram, TikTok, YouTube, Reddit, Discord, Telegram, and more through one connected workspace.30676MIT
- FlicenseAqualityCmaintenanceSchedule and manage social media posts across Facebook, Instagram, Twitter/X, LinkedIn, YouTube, TikTok, and Pinterest directly from Claude.10
Related MCP Connectors
Schedule, publish, and analyze social posts on TikTok, Instagram, YouTube, X, Threads, LinkedIn.
Schedule and publish social posts to 11 platforms with media, campaigns, analytics and AI captions
Create, schedule and publish social posts to TikTok, Instagram, Facebook and YouTube.
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/boreales/mcp-plus-tard'
If you have feedback or need assistance with the MCP directory API, please join our Discord server