Agent_rdx 0.1.0__py3-none-any.whl

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.
Agent_rdx/__init__.py ADDED
File without changes
Agent_rdx/main.py ADDED
@@ -0,0 +1,9 @@
1
+ from Agent_rdx.tools import mcp
2
+
3
+
4
+ def main():
5
+ mcp.run(transport="stdio")
6
+
7
+
8
+ if __name__ == "__main__":
9
+ main()
Agent_rdx/tools.py ADDED
@@ -0,0 +1,18 @@
1
+ from fastmcp import FastMCP
2
+
3
+ mcp=FastMCP()
4
+
5
+ @mcp.tool()
6
+ def add():
7
+ return 10+20
8
+
9
+ @mcp.tool()
10
+ def sub():
11
+ return 20-10
12
+ @mcp.tool()
13
+ def mul():
14
+ return 10*20
15
+
16
+ @mcp.tool()
17
+ def div():
18
+ return 20/10
@@ -0,0 +1,7 @@
1
+ Metadata-Version: 2.4
2
+ Name: Agent_rdx
3
+ Version: 0.1.0
4
+ Summary: This is RDX Agent.
5
+ Requires-Python: >=3.14
6
+ Description-Content-Type: text/markdown
7
+ Requires-Dist: fastmcp>=3.4.4
@@ -0,0 +1,8 @@
1
+ Agent_rdx/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ Agent_rdx/main.py,sha256=7cjNfviXk3ZuiBmJnwEsX7Ow3-YltUtDYFN7nxXpRYw,127
3
+ Agent_rdx/tools.py,sha256=cFim8XVBxgfjOCKKcCjhE9IcoOQjvQJwoZtDziGvQPQ,222
4
+ agent_rdx-0.1.0.dist-info/METADATA,sha256=HsCESIk21mA6vt0qwllBFgI58iQzpiWxPsfmaxgouJ0,182
5
+ agent_rdx-0.1.0.dist-info/WHEEL,sha256=K260EYznzXsJYBQGqmI8VTxEdiZYNvDZwW9cBh9-_MA,91
6
+ agent_rdx-0.1.0.dist-info/entry_points.txt,sha256=emxKp7AVklzJZ8e6Cf8-jWmbg_5TgmPkIK7lclHC2z8,50
7
+ agent_rdx-0.1.0.dist-info/top_level.txt,sha256=2RjicJTxDn9meAJpB47GBnElz5qb2MLD3Fe7SjBoW9U,10
8
+ agent_rdx-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (83.0.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ Agent_rdx = Agent_rdx.main:main
@@ -0,0 +1 @@
1
+ Agent_rdx