Skip to content

Commit 88d1898

Browse files
authored
Merge pull request #12 from wrale/jmdots/v0.1.9
Fix usage part of readme
2 parents 0634558 + 35552eb commit 88d1898

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

README.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ pip install mcp-server-make
3232
### Basic Usage
3333
```bash
3434
# Run with default Makefile in current directory
35-
mcp-server-make
35+
uvx mcp-server-make
3636

3737
# Run with specific Makefile and working directory
38-
mcp-server-make --make-path /path/to/Makefile --working-dir /path/to/working/dir
38+
uvx mcp-server-make --make-path /path/to/Makefile --working-dir /path/to/working/dir
3939
```
4040

4141
### MCP Client Configuration
@@ -46,8 +46,11 @@ To use with Claude Desktop, add to your Claude configuration (`claude_desktop_co
4646
{
4747
"mcpServers": {
4848
"make": {
49-
"command": "mcp-server-make",
50-
"args": ["--make-path", "/absolute/path/to/Makefile", "--working-dir", "/absolute/path/to/working/dir"]
49+
"command": "uvx",
50+
"args": [
51+
"mcp-server-make",
52+
"--make-path", "/absolute/path/to/Makefile"
53+
]
5154
}
5255
}
5356
}

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "mcp-server-make"
3-
version = "0.1.8"
3+
version = "0.1.9"
44
description = "A Model Context Protocol server providing access to make functionality"
55
readme = "README.md"
66
requires-python = ">=3.10"
@@ -56,4 +56,4 @@ strict_equality = true
5656
[tool.pytest.ini_options]
5757
asyncio_mode = "strict"
5858
testpaths = ["tests"]
59-
asyncio_default_fixture_loop_scope = "function"
59+
asyncio_default_fixture_loop_scope = "function"

0 commit comments

Comments
 (0)