amfs-mcp-server-pro 0.1.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.
@@ -0,0 +1,16 @@
1
+ .env
2
+ .env.local
3
+ .venv/
4
+ __pycache__/
5
+ *.pyc
6
+ .pytest_cache/
7
+ .mypy_cache/
8
+ .ruff_cache/
9
+ dist/
10
+ *.egg-info/
11
+ node_modules/
12
+ apps/dashboard/.next/
13
+ apps/dashboard/out/
14
+ dashboard/.next/
15
+ .next/
16
+ *.tsbuildinfo
@@ -0,0 +1,17 @@
1
+ Metadata-Version: 2.4
2
+ Name: amfs-mcp-server-pro
3
+ Version: 0.1.1
4
+ Summary: AMFS Pro — Extended MCP server with intelligence layer tools
5
+ Requires-Python: >=3.11
6
+ Requires-Dist: amfs
7
+ Requires-Dist: amfs-adapter-http
8
+ Requires-Dist: amfs-core
9
+ Requires-Dist: amfs-critic
10
+ Requires-Dist: amfs-distiller
11
+ Requires-Dist: amfs-extraction
12
+ Requires-Dist: amfs-mcp-server
13
+ Requires-Dist: amfs-ml
14
+ Requires-Dist: amfs-retrieval
15
+ Requires-Dist: amfs-safety
16
+ Requires-Dist: amfs-traces
17
+ Requires-Dist: fastmcp>=0.1
@@ -0,0 +1,29 @@
1
+ [project]
2
+ name = "amfs-mcp-server-pro"
3
+ version = "0.1.1"
4
+ description = "AMFS Pro — Extended MCP server with intelligence layer tools"
5
+ requires-python = ">=3.11"
6
+ dependencies = [
7
+ "amfs-core",
8
+ "amfs",
9
+ "amfs-mcp-server",
10
+ "amfs-adapter-http",
11
+ "amfs-extraction",
12
+ "amfs-critic",
13
+ "amfs-distiller",
14
+ "amfs-safety",
15
+ "amfs-retrieval",
16
+ "amfs-ml",
17
+ "amfs-traces",
18
+ "fastmcp>=0.1",
19
+ ]
20
+
21
+ [project.scripts]
22
+ amfs-mcp-server-pro = "amfs_mcp_pro.server:main"
23
+
24
+ [build-system]
25
+ requires = ["hatchling"]
26
+ build-backend = "hatchling.build"
27
+
28
+ [tool.hatch.build.targets.wheel]
29
+ packages = ["src/amfs_mcp_pro"]
@@ -0,0 +1 @@
1
+ """AMFS Pro MCP Server — extends the community MCP server with intelligence layer tools."""
@@ -0,0 +1,3 @@
1
+ from amfs_mcp_pro.server import main
2
+
3
+ main()