@@ -12,6 +12,7 @@ Through this LinkedIn MCP server, AI assistants like Claude can connect to your
1212
1313[ ![ Docker] ( https://img.shields.io/badge/Docker-Universal_MCP-008fe2?style=for-the-badge&logo=docker&logoColor=008fe2 )] ( #-docker-setup-recommended---universal )
1414[ ![ Install DXT Extension] ( https://img.shields.io/badge/Claude_Desktop_Extension-d97757?style=for-the-badge&logo=anthropic )] ( #-claude-desktop-dxt-extension )
15+ [ ![ uvx] ( https://img.shields.io/badge/uvx-Quick_Install-00E5FF?style=for-the-badge&logo=python&logoColor=white )] ( #-quick-installation-with-uvx )
1516[ ![ Development] ( https://img.shields.io/badge/Development-Local_Setup-ffd343?style=for-the-badge&logo=python&logoColor=ffd343 )] ( #-local-setup-develop--contribute )
1617
1718https://github.com/user-attachments/assets/eb84419a-6eaf-47bd-ac52-37bc59c83680
@@ -206,6 +207,59 @@ Copy the cookie from the output and set it as `LINKEDIN_COOKIE` in your client c
206207<br />
207208<br />
208209
210+ ## 🚀 Quick Installation with uvx
211+
212+ If you have [ uv] ( https://docs.astral.sh/uv/ ) installed, you can run the LinkedIn MCP Server directly without cloning:
213+
214+ ``` bash
215+ # Run directly from GitHub (latest version)
216+ uvx --from git+https://github.com/stickerdaniel/linkedin-mcp-server linkedin-mcp-server --help
217+
218+ # Run with your LinkedIn cookie
219+ uvx --from git+https://github.com/stickerdaniel/linkedin-mcp-server linkedin-mcp-server --cookie " your_linkedin_cookie"
220+ ```
221+
222+ ** Client Configuration for uvx:**
223+ ``` json
224+ {
225+ "mcpServers" : {
226+ "linkedin" : {
227+ "command" : " uvx" ,
228+ "args" : [
229+ " --from" ,
230+ " git+https://github.com/stickerdaniel/linkedin-mcp-server" ,
231+ " linkedin-mcp-server"
232+ ],
233+ "env" : {
234+ "LINKEDIN_COOKIE" : " your_linkedin_cookie_here"
235+ }
236+ }
237+ }
238+ }
239+ ```
240+
241+ <details >
242+ <summary ><strong >⚠️ Troubleshooting uvx</strong ></summary >
243+
244+ ** Installation issues:**
245+ - Ensure you have uv installed: ` curl -LsSf https://astral.sh/uv/install.sh | sh `
246+
247+ ** Cookie Setup:**
248+ 1 . Open Chrome DevTools on LinkedIn.com (F12)
249+ 2 . Go to Application → Cookies → linkedin.com
250+ 3 . Find the cookie named ` li_at `
251+ 4 . Copy the entire value (starts with ` AQE... ` )
252+ 5 . Format as: ` li_at=YOUR_COOKIE_VALUE `
253+ 6 . Use this value as your ` LINKEDIN_COOKIE ` in the configuration
254+
255+ ** Authentication:**
256+ - Cookie can be passed via ` --cookie ` flag or ` LINKEDIN_COOKIE ` environment variable
257+ - Make sure you have only one active LinkedIn session per cookie
258+ </details >
259+
260+ <br />
261+ <br />
262+
209263## 🐍 Local Setup (Develop & Contribute)
210264
211265** Prerequisites:** [ Chrome browser] ( https://www.google.com/chrome/ ) and [ Git] ( https://git-scm.com/downloads ) installed
0 commit comments