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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ loop. See the [RFC](docs/rfc-custom-mcp-server-builder.md) for the full design.
Requires Python 3.13+ and [uv](https://docs.astral.sh/uv/).

```bash
git clone https://github.com/StacklokLabs/mcp-builder.git
git clone https://github.com/stacklok/mcp-builder.git
cd mcp-builder
uv sync
```
Expand Down Expand Up @@ -159,7 +159,7 @@ BambooHR, Stripe, Slack, and more) if you want something to try against.
1. **One-time setup:** clone `mcp-template-py` somewhere on disk.

```bash
git clone https://github.com/StacklokLabs/mcp-template-py.git ../mcp-template-py
git clone https://github.com/stacklok/mcp-template-py.git ../mcp-template-py
```

2. Generate the server:
Expand Down Expand Up @@ -257,7 +257,7 @@ Scope of the current version:
and header-injected API keys. Query-parameter API keys and HTTP basic are
flagged but not generated.
- **Python output only.** The generator targets
[`mcp-template-py`](https://github.com/StacklokLabs/mcp-template-py); other
[`mcp-template-py`](https://github.com/stacklok/mcp-template-py); other
language templates are future work.
- **No spec-diffing.** Detecting upstream API changes and re-running the
pipeline is a manual step.
Expand Down Expand Up @@ -326,5 +326,5 @@ project-specific implementation guidelines.
## Related

- [RFC: Custom MCP Server Builder](docs/rfc-custom-mcp-server-builder.md) — full design and alternatives considered
- [`mcp-template-py`](https://github.com/StacklokLabs/mcp-template-py) — Python MCP server template the generator builds from
- [`mcp-template-py`](https://github.com/stacklok/mcp-template-py) — Python MCP server template the generator builds from
- [ToolHive](https://github.com/stacklok/toolhive) — runtime for MCP servers
4 changes: 2 additions & 2 deletions docs/rfc-custom-mcp-server-builder.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
> **Note (2026-04-24):** The auth schema described below has been superseded.
> This RFC documents an `oauth_bearer` catch-all type; the implementation now
> uses a discriminated `oauth2` / `oidc` / `api_key` / `none` union. See
> [PR #99](https://github.com/StacklokLabs/mcp-builder/pull/99) and
> [#94](https://github.com/StacklokLabs/mcp-builder/issues/94) for the new
> [PR #99](https://github.com/stacklok/mcp-builder/pull/99) and
> [#94](https://github.com/stacklok/mcp-builder/issues/94) for the new
> shape. The rest of this document reflects the original design.

## Summary
Expand Down
Loading