Skip to content

Commit 98f3c54

Browse files
committed
fix(manifest): remove parameters from tool descriptions
1 parent c2c92db commit 98f3c54

File tree

1 file changed

+6
-61
lines changed

1 file changed

+6
-61
lines changed

manifest.json

Lines changed: 6 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -33,82 +33,27 @@
3333
"tools": [
3434
{
3535
"name": "get_person_profile",
36-
"description": "Get detailed information from a LinkedIn profile including work history, education, skills, and connections",
37-
"parameters": {
38-
"type": "object",
39-
"properties": {
40-
"linkedin_username": {
41-
"type": "string",
42-
"description": "LinkedIn username (e.g., \"stickerdaniel\", \"john-doe-123456\")"
43-
}
44-
},
45-
"required": ["linkedin_username"]
46-
}
36+
"description": "Get detailed information from a LinkedIn profile including work history, education, skills, and connections"
4737
},
4838
{
4939
"name": "get_company_profile",
50-
"description": "Extract comprehensive company information and details",
51-
"parameters": {
52-
"type": "object",
53-
"properties": {
54-
"company_name": {
55-
"type": "string",
56-
"description": "LinkedIn company name (e.g., \"docker\", \"anthropic\", \"microsoft\")"
57-
},
58-
"get_employees": {
59-
"type": "boolean",
60-
"description": "Whether to scrape the company's employees (slower)",
61-
"default": false
62-
}
63-
},
64-
"required": ["company_name"]
65-
}
40+
"description": "Extract comprehensive company information and details"
6641
},
6742
{
6843
"name": "get_job_details",
69-
"description": "Retrieve specific job posting details using LinkedIn job IDs",
70-
"parameters": {
71-
"type": "object",
72-
"properties": {
73-
"job_id": {
74-
"type": "string",
75-
"description": "LinkedIn job ID (e.g., \"4252026496\", \"3856789012\")"
76-
}
77-
},
78-
"required": ["job_id"]
79-
}
44+
"description": "Retrieve specific job posting details using LinkedIn job IDs"
8045
},
8146
{
8247
"name": "search_jobs",
83-
"description": "Search for jobs with filters like keywords and location",
84-
"parameters": {
85-
"type": "object",
86-
"properties": {
87-
"search_term": {
88-
"type": "string",
89-
"description": "Search term for job search (e.g., \"software engineer\", \"product manager\")"
90-
}
91-
},
92-
"required": ["search_term"]
93-
}
48+
"description": "Search for jobs with filters like keywords and location"
9449
},
9550
{
9651
"name": "get_recommended_jobs",
97-
"description": "Get personalized job recommendations based on your profile",
98-
"parameters": {
99-
"type": "object",
100-
"properties": {},
101-
"required": []
102-
}
52+
"description": "Get personalized job recommendations based on your profile"
10353
},
10454
{
10555
"name": "close_session",
106-
"description": "Properly close browser session and clean up resources",
107-
"parameters": {
108-
"type": "object",
109-
"properties": {},
110-
"required": []
111-
}
56+
"description": "Properly close browser session and clean up resources"
11257
}
11358
],
11459
"user_config": {

0 commit comments

Comments
 (0)