-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 992 Bytes
/
pyproject.toml
File metadata and controls
44 lines (38 loc) · 992 Bytes
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
[project]
name = "fetch-jsonpath-mcp"
version = "1.1.2"
description = "An MCP server for fetching and extracting JSON data using JSONPath"
authors = [
{ name = "ackness", email = "ackness8@gmail.com" }
]
dependencies = [
"httpx>=0.28.1",
"mcp[cli]>=1.12.4",
"jsonpath-ng>=1.7.0",
"fastapi>=0.116.1",
"uvicorn>=0.35.0",
"beautifulsoup4>=4.13.4",
"markdownify>=1.2.0",
]
readme = "README.md"
requires-python = ">= 3.10"
[project.scripts]
fetch-jsonpath-mcp = "jsonrpc_mcp.server:run"
demo-server = "demo.demo_server:start_server"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = [
"pytest>=8.4.1",
"pytest-asyncio>=1.1.0",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/jsonrpc_mcp", "demo"]
[tool.ruff]
lint.select = ["E", "F", "I", "N", "UP"] # Added UP for pyupgrade rules
line-length = 256
target-version = "py310"