forked from stickerdaniel/linkedin-mcp-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (68 loc) · 2.16 KB
/
pyproject.toml
File metadata and controls
74 lines (68 loc) · 2.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[project]
name = "linkedin-scraper-mcp"
version = "4.9.3"
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,<3.15"
authors = [
{ name = "Daniel Sticker", email = "daniel@sticker.name" }
]
license = "Apache-2.0"
keywords = [
"linkedin",
"mcp",
"model-context-protocol",
"scraper",
"ai",
"automation",
"llm",
"anthropic",
"claude",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Environment :: Console",
"Operating System :: OS Independent",
]
dependencies = [
"fastmcp>=3.0.0",
"inquirer>=3.4.0",
"patchright>=1.40.0",
"python-dotenv>=1.1.1",
]
[project.urls]
Homepage = "https://github.com/stickerdaniel/linkedin-mcp-server"
Documentation = "https://github.com/stickerdaniel/linkedin-mcp-server#readme"
Repository = "https://github.com/stickerdaniel/linkedin-mcp-server"
Issues = "https://github.com/stickerdaniel/linkedin-mcp-server/issues"
Changelog = "https://github.com/stickerdaniel/linkedin-mcp-server/releases"
[project.scripts]
linkedin-mcp-server = "linkedin_mcp_server.cli_main:main"
linkedin-scraper-mcp = "linkedin_mcp_server.cli_main:main"
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["linkedin_mcp_server*"]
exclude = ["assets*", "docs*", "tests*"]
[tool.setuptools.package-data]
linkedin_mcp_server = ["py.typed"]
[dependency-groups]
dev = [
"aiohttp>=3.12.13",
"pre-commit>=4.2.0",
"pytest>=8.3.5",
"pytest-asyncio>=1.0.0",
"pytest-cov>=6.1.1",
"pytest-xdist>=3.8.0",
"ruff>=0.11.11",
"ty>=0.0.1a12",
]