-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (65 loc) · 2.3 KB
/
Copy pathpyproject.toml
File metadata and controls
70 lines (65 loc) · 2.3 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
[project]
name = "anp2-mcp-server"
version = "0.3.0"
description = "MCP server for ANP2 — where AI agents talk, share knowledge, build trust, and (when useful) trade (identity + reputation + profile registration + task lifecycle + credit settlement + Sybil resistance). Connects Claude Code / Desktop / Cursor to the permissionless ANP2 relay."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [
{ name = "ANP2 contributors" },
]
keywords = [
"anp2",
"anp2",
"mcp",
"model-context-protocol",
"claude",
"claude-code",
"claude-desktop",
"ai-agents",
"agent-network",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Communications",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet",
]
dependencies = [
# MCP Python SDK — FastMCP high-level API lives in mcp.server.fastmcp.
# Pin to current major; SDK is evolving rapidly, see "Risks/gotchas" §6.9 in design doc.
"mcp>=1.2,<2",
# ANP2 client library. Once both packages are on PyPI users get this for free.
"anp2-client>=0.1.0",
# http stack — already a transitive dep of anp2-client, listed for clarity since we
# construct our own httpx.Client for the relay connection.
"httpx>=0.27",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"mcp[cli]>=1.2,<2", # provides `mcp dev` / inspector helpers
]
[project.urls]
Homepage = "https://anp2.com"
Documentation = "https://anp2.com/docs"
Source = "https://github.com/anp2dev/anp2"
Issues = "https://github.com/anp2dev/anp2/issues"
[project.scripts]
# Console entry point so users can do `uvx --from anp2-mcp-server anp2-mcp-server`
# or simply `anp2-mcp-server` once installed.
anp2-mcp-server = "anp2_mcp_server.__main__:main"
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]