Skip to main content
Glama

LinkedIn Scraper MCP Server

by superyuser
types.ts1.17 kB
/** * LinkedIn profile scraping tool arguments */ export interface ScrapeProfileArgs { url: string; email: string; password: string; headless?: boolean; } /** * Experience item from LinkedIn profile */ export interface ExperienceItem { title?: string | null; company?: string | null; date_range?: string | null; location?: string | null; description?: string | null; } /** * Education item from LinkedIn profile */ export interface EducationItem { school?: string | null; degree?: string | null; field?: string | null; date_range?: string | null; description?: string | null; } /** * Complete LinkedIn profile data structure */ export interface ProfileData { url: string; name?: string | null; headline?: string | null; location?: string | null; about?: string | null; experiences: ExperienceItem[]; education: EducationItem[]; skills: string[]; websites: string[]; email?: string | null; } /** * Scraping result with metadata */ export interface ScrapeResult { success: boolean; profile?: ProfileData; error?: string; timestamp: string; }

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/superyuser/linkedin-scraper-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server