Skip to content

Commit

Permalink
Fix usage part of readme
Browse files Browse the repository at this point in the history
  • Loading branch information
jmdots committed Dec 18, 2024
1 parent 0634558 commit 35552eb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ pip install mcp-server-make
### Basic Usage
```bash
# Run with default Makefile in current directory
mcp-server-make
uvx mcp-server-make

# Run with specific Makefile and working directory
mcp-server-make --make-path /path/to/Makefile --working-dir /path/to/working/dir
uvx mcp-server-make --make-path /path/to/Makefile --working-dir /path/to/working/dir
```

### MCP Client Configuration
Expand All @@ -46,8 +46,11 @@ To use with Claude Desktop, add to your Claude configuration (`claude_desktop_co
{
"mcpServers": {
"make": {
"command": "mcp-server-make",
"args": ["--make-path", "/absolute/path/to/Makefile", "--working-dir", "/absolute/path/to/working/dir"]
"command": "uvx",
"args": [
"mcp-server-make",
"--make-path", "/absolute/path/to/Makefile"
]
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "mcp-server-make"
version = "0.1.8"
version = "0.1.9"
description = "A Model Context Protocol server providing access to make functionality"
readme = "README.md"
requires-python = ">=3.10"
Expand Down Expand Up @@ -56,4 +56,4 @@ strict_equality = true
[tool.pytest.ini_options]
asyncio_mode = "strict"
testpaths = ["tests"]
asyncio_default_fixture_loop_scope = "function"
asyncio_default_fixture_loop_scope = "function"

0 comments on commit 35552eb

Please sign in to comment.