Skip to content

Commit f463a5b

Browse files
committed
docs(company, job, person): update tool descriptions and remove outdated issue note
1 parent 7d88220 commit f463a5b

File tree

3 files changed

+7
-10
lines changed

3 files changed

+7
-10
lines changed

linkedin_mcp_server/tools/company.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ async def get_company_profile(
3030
company_name: str, get_employees: bool = False
3131
) -> Dict[str, Any]:
3232
"""
33-
Scrape a company's LinkedIn profile.
33+
Get a specific company's LinkedIn profile.
3434
3535
Args:
3636
company_name (str): LinkedIn company name (e.g., "docker", "anthropic", "microsoft")

linkedin_mcp_server/tools/job.py

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,7 @@ def register_job_tools(mcp: FastMCP) -> None:
3232
@mcp.tool()
3333
async def get_job_details(job_id: str) -> Dict[str, Any]:
3434
"""
35-
Scrape job details from a LinkedIn job posting.
36-
37-
This tool extracts comprehensive job information including title, company,
38-
location, posting date, application count, and full job description.
35+
Get job details for a specific job posting on LinkedIn
3936
4037
Args:
4138
job_id (str): LinkedIn job ID (e.g., "4252026496", "3856789012")
@@ -61,10 +58,10 @@ async def get_job_details(job_id: str) -> Dict[str, Any]:
6158
@mcp.tool()
6259
async def search_jobs(search_term: str) -> List[Dict[str, Any]]:
6360
"""
64-
Search for jobs on LinkedIn (Note: This tool has compatibility issues).
61+
Search for jobs on LinkedIn using a search term.
6562
6663
Args:
67-
search_term (str): The search term to use for job search
64+
search_term (str): Search term to use for the job search.
6865
6966
Returns:
7067
List[Dict[str, Any]]: List of job search results
@@ -84,7 +81,7 @@ async def search_jobs(search_term: str) -> List[Dict[str, Any]]:
8481
@mcp.tool()
8582
async def get_recommended_jobs() -> List[Dict[str, Any]]:
8683
"""
87-
Get recommended jobs from LinkedIn (Note: This tool has compatibility issues).
84+
Get your personalized recommended jobs from LinkedIn
8885
8986
Returns:
9087
List[Dict[str, Any]]: List of recommended jobs

linkedin_mcp_server/tools/person.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ def register_person_tools(mcp: FastMCP) -> None:
2828
@mcp.tool()
2929
async def get_person_profile(linkedin_username: str) -> Dict[str, Any]:
3030
"""
31-
Scrape a person's LinkedIn profile.
31+
Get a specific person's LinkedIn profile.
3232
3333
Args:
34-
linkedin_username (str): LinkedIn username (e.g., "john-doe-123456", "sarah-smith", "stickerdaniel")
34+
linkedin_username (str): LinkedIn username (e.g., "stickerdaniel", "anistji")
3535
3636
Returns:
3737
Dict[str, Any]: Structured data from the person's profile

0 commit comments

Comments
 (0)