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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: msbuild-mcp-server
3
- Version: 0.1.2
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.
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "msbuild-mcp-server"
3
- version = "0.1.2"
3
+ version = "0.1.3"
4
4
  description = "A lightweight MCP server for automating MSBuild projects and solutions builds."
5
5
  license = { text = "MIT" }
6
6
  readme = "README.md"
@@ -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}\nFull Output:\n{result.stdout}\nErrors:\n{result.stderr}"
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
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: msbuild-mcp-server
3
- Version: 0.1.2
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.