From 178b69cead0bc77045e21b860609c1fb6c9206de Mon Sep 17 00:00:00 2001 From: Daniel Sticker Date: Fri, 20 Feb 2026 18:21:05 +0100 Subject: [PATCH 1/3] chore: bump version to 4.1.0 --- pyproject.toml | 2 +- uv.lock | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 2e307ee2..5a5c74f2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "linkedin-scraper-mcp" -version = "4.0.0" +version = "4.1.0" description = "MCP server for LinkedIn profile, company, and job scraping with Claude AI integration. Supports direct profile/company/job URL scraping with secure credential storage." readme = "README.md" requires-python = ">=3.12" diff --git a/uv.lock b/uv.lock index 44cf7cc8..47b88709 100644 --- a/uv.lock +++ b/uv.lock @@ -1031,7 +1031,7 @@ wheels = [ [[package]] name = "linkedin-scraper-mcp" -version = "4.0.0" +version = "4.1.0" source = { editable = "." } dependencies = [ { name = "fastmcp" }, From fc0868231172f0968fa33ea651d5a11f52b64084 Mon Sep 17 00:00:00 2001 From: Daniel Sticker Date: Fri, 20 Feb 2026 18:24:27 +0100 Subject: [PATCH 2/3] docs(README): update contributing guidelines to encourage issue discussion before PRs --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5ba9e653..e423ed8e 100644 --- a/README.md +++ b/README.md @@ -462,7 +462,9 @@ uv run -m linkedin_mcp_server --transport streamable-http --host 127.0.0.1 --por -Feel free to open an [issue](https://github.com/stickerdaniel/linkedin-mcp-server/issues) or [PR](https://github.com/stickerdaniel/linkedin-mcp-server/pulls)! +## Contributing + +Contributions are welcome! Please **open an issue first** to discuss the feature or bug fix before submitting a PR. This helps align on the approach before any code is written.

From a35072aa68f93f52d0325cde72eb118db6a96d83 Mon Sep 17 00:00:00 2001 From: Daniel Sticker Date: Fri, 20 Feb 2026 18:26:35 +0100 Subject: [PATCH 3/3] docs(README): consolidate contributing guidelines and remove redundant section --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e423ed8e..6d082455 100644 --- a/README.md +++ b/README.md @@ -346,6 +346,8 @@ Runtime server logs are emitted by FastMCP/Uvicorn. ## 🐍 Local Setup (Develop & Contribute) +Contributions are welcome! Please [open an issue](https://github.com/stickerdaniel/linkedin-mcp-server/issues) first to discuss the feature or bug fix before submitting a PR. This helps align on the approach before any code is written. + **Prerequisites:** [Git](https://git-scm.com/downloads) and [uv](https://docs.astral.sh/uv/) installed ### Installation @@ -462,9 +464,6 @@ uv run -m linkedin_mcp_server --transport streamable-http --host 127.0.0.1 --por -## Contributing - -Contributions are welcome! Please **open an issue first** to discuss the feature or bug fix before submitting a PR. This helps align on the approach before any code is written.