agentr 0.1.1__tar.gz → 0.1.2__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.
@@ -1,9 +1,9 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agentr
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: Add your description here
5
5
  Author-email: Manoj Bajaj <manojbajaj95@gmail.com>
6
- Requires-Python: >=3.13
6
+ Requires-Python: >=3.11
7
7
  Requires-Dist: mcp>=1.5.0
8
8
  Requires-Dist: pyyaml>=6.0.2
9
9
  Requires-Dist: typer>=0.15.2
@@ -1,12 +1,12 @@
1
1
  [project]
2
2
  name = "agentr"
3
- version = "0.1.1"
3
+ version = "0.1.2"
4
4
  description = "Add your description here"
5
5
  readme = "README.md"
6
6
  authors = [
7
7
  { name = "Manoj Bajaj", email = "manojbajaj95@gmail.com" }
8
8
  ]
9
- requires-python = ">=3.13"
9
+ requires-python = ">=3.11"
10
10
  dependencies = [
11
11
  "mcp>=1.5.0",
12
12
  "pyyaml>=6.0.2",
@@ -25,5 +25,11 @@ def generate(schema_path: Path = typer.Option(..., "--schema", "-s")):
25
25
  code = generate_api_client(schema)
26
26
  print(code)
27
27
 
28
+ @app.command()
29
+ def run():
30
+ """Run the MCP server"""
31
+ from agentr.mcp import mcp
32
+ mcp.run()
33
+
28
34
  if __name__ == "__main__":
29
35
  app()
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes