Connect Anysite MCP Server to n8n workflows
The Anysite MCP Tool for n8n provides seamless integration between n8n workflows and the Anysite API through the Model Context Protocol (MCP). This allows you to extract LinkedIn, Instagram, Reddit, and other social media data directly within your n8n automation workflows.
First, you need to obtain the MCP connection URL from your Anysite dashboard:

For n8n integration, use the Direct URL as it includes authentication credentials.
https://api.anysite.io/mcp/direct?api_key=YOUR_KEY)Keep your connection URL secure - it contains your API key. Never share it publicly or commit it to version control.
Now add the MCP Client node to your n8n workflow:
Add MCP Client Node
Configure Connection Parameters

Set the following parameters in the node configuration:
Endpoint: Paste your Direct URL from Step 1
https://api.anysite.io/mcp/direct?api_key=YOUR_KEY
Server Transport: Select HTTP Streamable
Authentication: Select None (Authentication is handled through the API key in the endpoint URL)
Tools to Include:
Selected if you want to use specific toolsSelect Tools (Optional)
If you chose "Selected" for Tools to Include, you can specify which Anysite tools to use:
linkedin_user - Extract LinkedIn profile datalinkedin_company - Get company informationlinkedin_post - Fetch post detailsinstagram_profile - Get Instagram profile datareddit_post - Extract Reddit post contentTest your MCP integration:
If the connection is successful, you'll see a list of available Anysite tools that can be used in your workflow.
Here's a typical workflow structure using the Anysite MCP Tool:
Trigger (Webhook/Schedule)
↓
MCP Client (Anysite)
↓
AI Agent Node (uses MCP tools)
↓
Process Results
↓
Output/Store Data
- Verify your API key is valid and active
- Check that your Anysite account has API access enabled
- Ensure the connection URL is complete and correctly copied
- Try regenerating the connection URL from the Anysite dashboard
- Update n8n to the latest version (MCP support requires v1.0+)
- Check if MCP Client node is enabled in your n8n instance
- For self-hosted n8n, ensure all dependencies are installed
- Verify your Anysite subscription includes the tools you need
- Check API rate limits and quota in your Anysite account
- Ensure the endpoint URL includes the `api_key` parameter
- Try reconnecting by updating the endpoint URL
- Confirm "Server Transport" is set to "HTTP Streamable"
- Check network connectivity between n8n and api.anysite.io
- For self-hosted n8n, verify firewall rules allow outbound HTTPS
Never expose your API key. Use n8n environment variables or credentials management for sensitive data.
Restrict n8n workflow access to authorized team members only.
Regularly check your Anysite dashboard for API usage and rate limits.
Periodically regenerate your API keys and update n8n configurations.