tonmcp 0.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- tonmcp-0.0.1/PKG-INFO +25 -0
- tonmcp-0.0.1/pyproject.toml +64 -0
- tonmcp-0.0.1/setup.cfg +4 -0
- tonmcp-0.0.1/tonmcp/__init__.py +1 -0
- tonmcp-0.0.1/tonmcp.egg-info/PKG-INFO +25 -0
- tonmcp-0.0.1/tonmcp.egg-info/SOURCES.txt +7 -0
- tonmcp-0.0.1/tonmcp.egg-info/dependency_links.txt +1 -0
- tonmcp-0.0.1/tonmcp.egg-info/requires.txt +2 -0
- tonmcp-0.0.1/tonmcp.egg-info/top_level.txt +1 -0
tonmcp-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tonmcp
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: MCP server for The Open Network — wallets, jettons, NFTs, and DNS.
|
|
5
|
+
Author: nessshon
|
|
6
|
+
Maintainer: nessshon
|
|
7
|
+
License-Expression: MIT
|
|
8
|
+
Project-URL: Homepage, https://github.com/nessshon/tonmcp/
|
|
9
|
+
Keywords: AI,AsyncIO,MCP,Model Context Protocol,TON,TON blockchain,The Open Network,blockchain,crypto,smart contracts
|
|
10
|
+
Classifier: Development Status :: 3 - Alpha
|
|
11
|
+
Classifier: Environment :: Console
|
|
12
|
+
Classifier: Framework :: AsyncIO
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: Intended Audience :: Financial and Insurance Industry
|
|
15
|
+
Classifier: Operating System :: OS Independent
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
21
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
22
|
+
Requires-Python: <3.15,>=3.10
|
|
23
|
+
Description-Content-Type: text/markdown
|
|
24
|
+
Requires-Dist: mcp==1.26.0
|
|
25
|
+
Requires-Dist: tonutils==2.0.4
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=80"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "tonmcp"
|
|
7
|
+
description = "MCP server for The Open Network — wallets, jettons, NFTs, and DNS."
|
|
8
|
+
requires-python = ">=3.10,<3.15"
|
|
9
|
+
authors = [
|
|
10
|
+
{ name = "nessshon" },
|
|
11
|
+
]
|
|
12
|
+
maintainers = [
|
|
13
|
+
{ name = "nessshon" },
|
|
14
|
+
]
|
|
15
|
+
dependencies = [
|
|
16
|
+
"mcp==1.26.0",
|
|
17
|
+
"tonutils==2.0.4"
|
|
18
|
+
]
|
|
19
|
+
keywords = [
|
|
20
|
+
"AI",
|
|
21
|
+
"AsyncIO",
|
|
22
|
+
"MCP",
|
|
23
|
+
"Model Context Protocol",
|
|
24
|
+
"TON",
|
|
25
|
+
"TON blockchain",
|
|
26
|
+
"The Open Network",
|
|
27
|
+
"blockchain",
|
|
28
|
+
"crypto",
|
|
29
|
+
"smart contracts",
|
|
30
|
+
]
|
|
31
|
+
classifiers = [
|
|
32
|
+
"Development Status :: 3 - Alpha",
|
|
33
|
+
"Environment :: Console",
|
|
34
|
+
"Framework :: AsyncIO",
|
|
35
|
+
"Intended Audience :: Developers",
|
|
36
|
+
"Intended Audience :: Financial and Insurance Industry",
|
|
37
|
+
"Operating System :: OS Independent",
|
|
38
|
+
"Programming Language :: Python :: 3.10",
|
|
39
|
+
"Programming Language :: Python :: 3.11",
|
|
40
|
+
"Programming Language :: Python :: 3.12",
|
|
41
|
+
"Programming Language :: Python :: 3.13",
|
|
42
|
+
"Programming Language :: Python :: 3.14",
|
|
43
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
44
|
+
]
|
|
45
|
+
dynamic = ["version"]
|
|
46
|
+
readme = "README.md"
|
|
47
|
+
license = "MIT"
|
|
48
|
+
|
|
49
|
+
[project.urls]
|
|
50
|
+
Homepage = "https://github.com/nessshon/tonmcp/"
|
|
51
|
+
|
|
52
|
+
[tool.setuptools.packages.find]
|
|
53
|
+
include = ["tonmcp", "tonmcp.*"]
|
|
54
|
+
|
|
55
|
+
[tool.setuptools.package-data]
|
|
56
|
+
tonmcp = ["py.typed"]
|
|
57
|
+
|
|
58
|
+
[tool.setuptools.dynamic]
|
|
59
|
+
version = { attr = "tonmcp.__version__" }
|
|
60
|
+
|
|
61
|
+
[tool.mypy]
|
|
62
|
+
python_version = "3.10"
|
|
63
|
+
follow_imports = "skip"
|
|
64
|
+
ignore_missing_imports = true
|
tonmcp-0.0.1/setup.cfg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.0.1"
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tonmcp
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: MCP server for The Open Network — wallets, jettons, NFTs, and DNS.
|
|
5
|
+
Author: nessshon
|
|
6
|
+
Maintainer: nessshon
|
|
7
|
+
License-Expression: MIT
|
|
8
|
+
Project-URL: Homepage, https://github.com/nessshon/tonmcp/
|
|
9
|
+
Keywords: AI,AsyncIO,MCP,Model Context Protocol,TON,TON blockchain,The Open Network,blockchain,crypto,smart contracts
|
|
10
|
+
Classifier: Development Status :: 3 - Alpha
|
|
11
|
+
Classifier: Environment :: Console
|
|
12
|
+
Classifier: Framework :: AsyncIO
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: Intended Audience :: Financial and Insurance Industry
|
|
15
|
+
Classifier: Operating System :: OS Independent
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
21
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
22
|
+
Requires-Python: <3.15,>=3.10
|
|
23
|
+
Description-Content-Type: text/markdown
|
|
24
|
+
Requires-Dist: mcp==1.26.0
|
|
25
|
+
Requires-Dist: tonutils==2.0.4
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tonmcp
|