yashpanditrao/fridaydata-mcp-server
3.3
If you are the rightful owner of fridaydata-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
FridayData MCP Server is a robust Model Context Protocol server offering LinkedIn scraping, web search, and website data extraction capabilities.
FridayData MCP Server
A powerful Model Context Protocol (MCP) server providing access to LinkedIn scraping, web search, and website data extraction capabilities.
Overview
This MCP server exposes three key endpoints through a simple API interface:
- LinkedIn Profile Scraping (
/profile
) - Extract structured data from LinkedIn profiles - LinkedIn Company Analysis (
/analyze-company
) - Gather insights from company pages - Website Information Extraction (
/extract
) - Extract custom data from any website - Web Search (
/search
) - Perform location-aware web searches
Get started by obtaining your API key from Friday Data.
Key Features
-
LinkedIn Profile Scraping:
- Full profile data in JSON format
- 60 second timeout per request
- Error handling with detailed messages
- Automatic response validation
-
LinkedIn Company Analysis:
- POST request to
/analyze-company
- Company insights in structured format
- Configurable timeout settings
- Comprehensive error reporting
- POST request to
-
Website Data Extraction:
- Custom schema support
- Flexible query parameters
- JSON response format
- Built-in timeout protection
-
Web Search Capabilities:
- Location-based searching (default: US)
- Configurable result count (1-100)
- Structured JSON responses
- Robust error handling
Technical Details
- All endpoints require
X-API-KEY
header - Responses are in JSON format
- 60 second timeout on all requests
- Automatic request abortion on timeout
- Full error stack traces in development
Quick Start
- Get your API key from Friday Data
Setup
Add this to your MCP client configuration:
{
"friday_data_mcp": {
"name": "Friday Data MCP",
"command": "npx",
"args": [
"fridaydata-mcp"
],
"env": {
"FRIDAY_API_KEY": "YOUR_API_KEY"
},
"capabilities": {
"tools": true,
"resources": false,
"prompts": false,
"sampling": false
}
}
}