Claude
Manage your content from Claude.
Claude connects to Verlynk through a remote MCP custom connector. Once connected, you can create posts, schedule content, manage drafts, and handle inbox comments with natural language — on claude.ai, Claude Desktop, and Claude mobile.
Remote MCP URL: https://verlynk.com/api/public/mcp
Prerequisites
- A Verlynk account
- At least one social account connected in Verlynk
Custom connectors are available on Free, Pro, Max, Team, and Enterprise Claude plans. Free plans are limited to one custom connector. See Anthropic’s custom connector guide.
Setup
- Claude (Custom Connector)
- Claude Code
- Claude Desktop (local config)
This is the recommended setup for claude.ai and Claude Desktop. Claude reaches Verlynk from Anthropic’s cloud (not from your laptop), so no local Node.js proxy and no MCP token are required for the usual flow. You authenticate with Verlynk OAuth when you click Connect.
1. Open Connectors in Claude
- Open claude.ai or Claude Desktop.
- Go to Settings (or Customize) → Connectors.
On Team or Enterprise plans, an Owner must add the custom connector first under Organization / Admin settings → Connectors. Members then open Connectors, find Verlynk (labeled Custom), and click Connect.
2. Add a custom connector
- Click + → Add custom connector (wording may vary slightly by plan).
- Enter:
- Name:
Verlynk - Remote MCP server URL:
https://verlynk.com/api/public/mcp
- Name:
- Leave advanced OAuth client fields empty unless Verlynk support asks you to set them.
- Click Add.
You do not need to add request headers or paste an MCP token for this path.
3. Connect and authorize
- Find Verlynk in your connectors list.
- Click Connect.
- Complete the Verlynk sign-in / authorize screen.
Claude then uses Verlynk OAuth (no static API key in the connector).
4. Enable Verlynk in a chat
- Start a new chat.
- Open + → Connectors (or the connectors / tools control in the composer).
- Enable Verlynk for that conversation.
- Ask Claude to list your connected Verlynk channels.
1. Create an MCP token
Create a token with the mcp:access scope: Create MCP Token.
2. Add Verlynk MCP via CLI
claude mcp add verlynk \
--transport http \
https://verlynk.com/api/public/mcp \
--header "Authorization: Bearer YOUR_MCP_KEY"
3. Verify the integration
claude mcp list
Use this only if you prefer a local MCP bridge on your machine instead of a remote custom connector. For most users, the Custom Connector tab is simpler.
1. Create an MCP token
Create a token with the mcp:access scope: Create MCP Token.
2. Install Node.js (one-time)
Requires Node.js 18 or higher. Download Node.js.
If multiple Node versions are installed, verify Claude Desktop is using version 18+.
3. Edit Claude Desktop config
- Open Claude Desktop → Settings → Developer → Edit config.
- Add (or merge) the Verlynk server:
{
"mcpServers": {
"Verlynk": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://verlynk.com/api/public/mcp",
"--header",
"Authorization: Bearer YOUR_MCP_KEY"
]
}
}
}
- Restart Claude Desktop.
- Confirm Verlynk shows as connected in MCP settings.
Try It Out
Copy any example prompt to get started with Claude:
- List all my scheduled Verlynk posts for this week
- Create a draft post for LinkedIn: We just shipped our analytics dashboard
- Show channels with no scheduled posts tomorrow
- Show my latest comments and reply to the friendly ones with a short thank-you
See Prompt Examples (also image and video) for more.