msbuild-mcp-server 0.1.2__tar.gz → 0.1.3__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.
- {msbuild_mcp_server-0.1.2/src/msbuild_mcp_server.egg-info → msbuild_mcp_server-0.1.3}/PKG-INFO +11 -1
- {msbuild_mcp_server-0.1.2 → msbuild_mcp_server-0.1.3}/README.md +10 -0
- {msbuild_mcp_server-0.1.2 → msbuild_mcp_server-0.1.3}/pyproject.toml +1 -1
- {msbuild_mcp_server-0.1.2 → msbuild_mcp_server-0.1.3}/src/msbuild_mcp_server/server.py +1 -1
- {msbuild_mcp_server-0.1.2 → msbuild_mcp_server-0.1.3/src/msbuild_mcp_server.egg-info}/PKG-INFO +11 -1
- {msbuild_mcp_server-0.1.2 → msbuild_mcp_server-0.1.3}/LICENSE +0 -0
- {msbuild_mcp_server-0.1.2 → msbuild_mcp_server-0.1.3}/setup.cfg +0 -0
- {msbuild_mcp_server-0.1.2 → msbuild_mcp_server-0.1.3}/src/msbuild_mcp_server.egg-info/SOURCES.txt +0 -0
- {msbuild_mcp_server-0.1.2 → msbuild_mcp_server-0.1.3}/src/msbuild_mcp_server.egg-info/dependency_links.txt +0 -0
- {msbuild_mcp_server-0.1.2 → msbuild_mcp_server-0.1.3}/src/msbuild_mcp_server.egg-info/entry_points.txt +0 -0
- {msbuild_mcp_server-0.1.2 → msbuild_mcp_server-0.1.3}/src/msbuild_mcp_server.egg-info/requires.txt +0 -0
- {msbuild_mcp_server-0.1.2 → msbuild_mcp_server-0.1.3}/src/msbuild_mcp_server.egg-info/top_level.txt +0 -0
{msbuild_mcp_server-0.1.2/src/msbuild_mcp_server.egg-info → msbuild_mcp_server-0.1.3}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: msbuild-mcp-server
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.3
|
|
4
4
|
Summary: A lightweight MCP server for automating MSBuild projects and solutions builds.
|
|
5
5
|
License: MIT
|
|
6
6
|
Requires-Python: >=3.11
|
|
@@ -60,6 +60,16 @@ Place this snippet in your client configuration file:
|
|
|
60
60
|
|
|
61
61
|
Restart your tool to ensure that the `msbuild-mcp-server` and its provided tools are properly registered.
|
|
62
62
|
|
|
63
|
+
# Agent Prompt Examples
|
|
64
|
+
|
|
65
|
+
AI agents can trigger builds using natural language like:
|
|
66
|
+
|
|
67
|
+
- **Basic Project Build**
|
|
68
|
+
> *"Build this solution at `C:/Path/To/Project.sln` using `Release|x64`."*
|
|
69
|
+
|
|
70
|
+
- **Unreal Engine Build**
|
|
71
|
+
> *"Build the solution located at `C:/Projects/MyGame/MyGame.sln` using `Development Editor|Win64`."*
|
|
72
|
+
|
|
63
73
|
## License
|
|
64
74
|
|
|
65
75
|
This project is licensed under the MIT License.
|
|
@@ -44,6 +44,16 @@ Place this snippet in your client configuration file:
|
|
|
44
44
|
|
|
45
45
|
Restart your tool to ensure that the `msbuild-mcp-server` and its provided tools are properly registered.
|
|
46
46
|
|
|
47
|
+
# Agent Prompt Examples
|
|
48
|
+
|
|
49
|
+
AI agents can trigger builds using natural language like:
|
|
50
|
+
|
|
51
|
+
- **Basic Project Build**
|
|
52
|
+
> *"Build this solution at `C:/Path/To/Project.sln` using `Release|x64`."*
|
|
53
|
+
|
|
54
|
+
- **Unreal Engine Build**
|
|
55
|
+
> *"Build the solution located at `C:/Projects/MyGame/MyGame.sln` using `Development Editor|Win64`."*
|
|
56
|
+
|
|
47
57
|
## License
|
|
48
58
|
|
|
49
59
|
This project is licensed under the MIT License.
|
|
@@ -166,7 +166,7 @@ def build_msbuild_project(
|
|
|
166
166
|
error_lines_stdout = [line for line in result.stdout.splitlines() if "error" in line.lower()]
|
|
167
167
|
error_lines_stderr = [line for line in result.stderr.splitlines() if "error" in line.lower()]
|
|
168
168
|
filtered_errors = "\n".join(error_lines_stdout + error_lines_stderr)
|
|
169
|
-
return f"Build failed with errors.\nFiltered Errors:\n{filtered_errors}
|
|
169
|
+
return f"Build failed with errors.\nFiltered Errors:\n{filtered_errors}"
|
|
170
170
|
except FileNotFoundError:
|
|
171
171
|
return "MSBuild executable not found. Ensure MSBuild is installed and added to the PATH."
|
|
172
172
|
|
{msbuild_mcp_server-0.1.2 → msbuild_mcp_server-0.1.3/src/msbuild_mcp_server.egg-info}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: msbuild-mcp-server
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.3
|
|
4
4
|
Summary: A lightweight MCP server for automating MSBuild projects and solutions builds.
|
|
5
5
|
License: MIT
|
|
6
6
|
Requires-Python: >=3.11
|
|
@@ -60,6 +60,16 @@ Place this snippet in your client configuration file:
|
|
|
60
60
|
|
|
61
61
|
Restart your tool to ensure that the `msbuild-mcp-server` and its provided tools are properly registered.
|
|
62
62
|
|
|
63
|
+
# Agent Prompt Examples
|
|
64
|
+
|
|
65
|
+
AI agents can trigger builds using natural language like:
|
|
66
|
+
|
|
67
|
+
- **Basic Project Build**
|
|
68
|
+
> *"Build this solution at `C:/Path/To/Project.sln` using `Release|x64`."*
|
|
69
|
+
|
|
70
|
+
- **Unreal Engine Build**
|
|
71
|
+
> *"Build the solution located at `C:/Projects/MyGame/MyGame.sln` using `Development Editor|Win64`."*
|
|
72
|
+
|
|
63
73
|
## License
|
|
64
74
|
|
|
65
75
|
This project is licensed under the MIT License.
|
|
File without changes
|
|
File without changes
|
{msbuild_mcp_server-0.1.2 → msbuild_mcp_server-0.1.3}/src/msbuild_mcp_server.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{msbuild_mcp_server-0.1.2 → msbuild_mcp_server-0.1.3}/src/msbuild_mcp_server.egg-info/requires.txt
RENAMED
|
File without changes
|
{msbuild_mcp_server-0.1.2 → msbuild_mcp_server-0.1.3}/src/msbuild_mcp_server.egg-info/top_level.txt
RENAMED
|
File without changes
|