You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: AGENTS.md
+8-2Lines changed: 8 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -79,8 +79,14 @@ After the workflow completes, file a PR in the MCP registry to update the versio
79
79
80
80
Always read [`CONTRIBUTING.md`](CONTRIBUTING.md) before filing an issue or working on this repository.
81
81
82
-
- Include the model used for code generation in PR descriptions (e.g. "Generated with Claude Opus 4.6")
83
-
- Write a short synthetic prompt that would reproduce the PR diff if given to a fresh Claude Code session. Don't copy the user's first message — distill the conversation into a single instruction that captures the full scope of changes. This tells the maintainer what was intended, which is often more useful than reviewing the full diff.
82
+
- Write a short synthetic prompt that would reproduce the PR diff if given to a fresh Claude Code session. Don't copy the user's first message — distill the conversation into a single instruction that captures the full scope of changes. This tells the maintainer what was intended, which is often more useful than reviewing the full diff. Use a Markdown blockquote under a `## Synthetic prompt` heading, followed by the model attribution:
83
+
```
84
+
## Synthetic prompt
85
+
86
+
> Add `skills` and `projects` sections to `get_person_profile`, following the certifications PR pattern. Update fields, tests, docs, and manifest.
87
+
88
+
Generated with <model name and version>
89
+
```
84
90
- When implementing a new feature/fix:
85
91
1. Check open issues. If no issue exists, create one following the templates in `.github/ISSUE_TEMPLATE/`. Fill in every section; delete optional sections if not applicable.
86
92
2. Branch from `main`: `feature/issue-number-short-description`
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ Through this LinkedIn MCP server, AI assistants like Claude can connect to your
32
32
33
33
| Tool | Description | Status |
34
34
|------|-------------|--------|
35
-
|`get_person_profile`| Get profile info with explicit section selection (experience, education, interests, honors, languages, certifications, contact_info, posts) | working |
35
+
|`get_person_profile`| Get profile info with explicit section selection (experience, education, interests, honors, languages, certifications, skills, projects, contact_info, posts) | working |
36
36
|`connect_with_person`| Send a connection request or accept an incoming one, with optional note |[#304](https://github.com/stickerdaniel/linkedin-mcp-server/issues/304)|
37
37
|`get_sidebar_profiles`| Extract profile URLs from sidebar recommendation sections ("More profiles for you", "Explore premium profiles", "People you may know") on a profile page | working |
38
38
|`get_inbox`| List recent conversations from the LinkedIn messaging inbox | working |
Copy file name to clipboardExpand all lines: manifest.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,7 @@
47
47
"tools": [
48
48
{
49
49
"name": "get_person_profile",
50
-
"description": "Get detailed information from a LinkedIn profile including work history, education, certifications, skills, connections, and recent posts"
50
+
"description": "Get detailed information from a LinkedIn profile including work history, education, certifications, skills, projects, connections, and recent posts"
0 commit comments