Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 2 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,26 +14,12 @@ This SDK provides high-level and dynamic access to those tools, making it easy t
- Generate self-contained, deepcopy-safe tool functions for frameworks like [any-agent](https://github.com/mozilla-ai/any-agent)
- Minimal dependencies (`requests` only)

## Installation
## Installation in your project

Assuming you are using [uv](https://github.com/astral-sh/uv), include it in your `pyproject.toml`:

```toml
[tool.uv.sources]
mcpd = { path = "../mcpd", editable = true }

[project]
dependencies = [
"mcpd"
]
```

Then run:

```bash
uv venv
source .venv/bin/activate
uv sync
uv add mcpd
```

## Dev Setup
Expand Down
5 changes: 1 addition & 4 deletions examples/anyagent/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ requires-python = ">=3.11"
dependencies = [
"any-agent[all]>=0.24.0",
"requests>=2.32.4",
"mcpd",
"mcpd>=0.0.1",
]

[dependency-groups]
Expand All @@ -33,9 +33,6 @@ all = [
{ include-group = "tests" },
]

[tool.uv.sources]
mcpd = { path = "../..", editable = true }

[tool.ruff]
fix = true
line-length=120
Expand Down
5 changes: 1 addition & 4 deletions examples/manual/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = {text = "Apache-2.0"}
requires-python = ">=3.11"
dependencies = [
"requests>=2.32.4",
"mcpd",
"mcpd>=0.0.1",
]

[dependency-groups]
Expand All @@ -32,9 +32,6 @@ all = [
{ include-group = "tests" },
]

[tool.uv.sources]
mcpd = { path = "../..", editable = true }

[tool.ruff]
fix = true
line-length=120
Expand Down
5 changes: 1 addition & 4 deletions examples/pydantic-ai/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = {text = "Apache-2.0"}
requires-python = ">=3.11"
dependencies = [
"requests>=2.32.4",
"mcpd",
"mcpd>=0.0.1",
"pydantic-ai>=0.3.7",
]

Expand All @@ -33,9 +33,6 @@ all = [
{ include-group = "tests" },
]

[tool.uv.sources]
mcpd = { path = "../..", editable = true }

[tool.ruff]
fix = true
line-length=120
Expand Down
5 changes: 1 addition & 4 deletions examples/readme_maker/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = {text = "Apache-2.0"}
requires-python = ">=3.11"
dependencies = [
"requests>=2.32.4",
"mcpd",
"mcpd>=0.0.1",
"pydantic-ai>=0.3.7",
]

Expand All @@ -33,9 +33,6 @@ all = [
{ include-group = "tests" },
]

[tool.uv.sources]
mcpd = { path = "../..", editable = true }

[tool.ruff]
fix = true
line-length=120
Expand Down