Skip to content

Commit 3f98ae1

Browse files
authored
Rename toolhive-registry to toolhive-catalog (#775)
Signed-off-by: Radoslav Dimitrov <radoslav@stacklok.com>
1 parent caef1c1 commit 3f98ae1

File tree

12 files changed

+16
-16
lines changed

12 files changed

+16
-16
lines changed

.claude/agents/mcp-pr-reviewer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ You are an autonomous PR reviewer for the ToolHive Registry. Your job is to revi
1010

1111
## Input
1212

13-
You will receive a PR number to review. The repository is `stacklok/toolhive-registry`.
13+
You will receive a PR number to review. The repository is `stacklok/toolhive-catalog`.
1414

1515
## Workflow
1616

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,11 @@ jobs:
6666
### Usage
6767
6868
```sh
69-
go get github.com/stacklok/toolhive-registry/pkg/catalog/toolhive@latest
69+
go get github.com/stacklok/toolhive-catalog/pkg/catalog/toolhive@latest
7070
```
7171
7272
```go
73-
import "github.com/stacklok/toolhive-registry/pkg/catalog/toolhive"
73+
import "github.com/stacklok/toolhive-catalog/pkg/catalog/toolhive"
7474
7575
// ToolHive legacy format
7676
data := toolhive.Legacy()

.golangci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ formatters:
9696
sections:
9797
- standard
9898
- default
99-
- prefix(github.com/stacklok/toolhive-registry)
99+
- prefix(github.com/stacklok/toolhive-catalog)
100100
exclusions:
101101
generated: lax
102102
paths:

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ are a great place to start!
5656
message to indicate that the contributor agrees to the Developer Certificate
5757
of Origin. For additional details, check out the [DCO instructions](dco.md).
5858
- Create an issue outlining the fix or feature.
59-
- Fork the ToolHive repository to your own GitHub account and clone it locally.
59+
- Fork the ToolHive Catalog repository to your own GitHub account and clone it locally.
6060
- Hack on your changes.
6161
- Correctly format your commit messages, see
6262
[Commit message guidelines](#commit-message-guidelines) below.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# ToolHive Registry
1+
# ToolHive Catalog
22

3-
This repository contains the registry of MCP (Model Context Protocol) servers available for ToolHive. Each server entry provides AI assistants with specialized tools and capabilities.
3+
This repository contains the catalog of MCP (Model Context Protocol) servers available for ToolHive. Each server entry provides AI assistants with specialized tools and capabilities.
44

55
## What is this?
66

cmd/catalog/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111

1212
"github.com/spf13/cobra"
1313

14-
internalregistry "github.com/stacklok/toolhive-registry/internal/registry"
14+
internalregistry "github.com/stacklok/toolhive-catalog/internal/registry"
1515
)
1616

1717
const (

cmd/catalog/update_metadata.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import (
1212
"github.com/stacklok/toolhive/pkg/registry/converters"
1313
toolhiveRegistry "github.com/stacklok/toolhive/pkg/registry/registry"
1414

15-
"github.com/stacklok/toolhive-registry/internal/metadata"
16-
"github.com/stacklok/toolhive-registry/internal/serverjson"
15+
"github.com/stacklok/toolhive-catalog/internal/metadata"
16+
"github.com/stacklok/toolhive-catalog/internal/serverjson"
1717
)
1818

1919
var (

cmd/catalog/update_tools.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import (
1212
"github.com/spf13/cobra"
1313
toolhiveRegistry "github.com/stacklok/toolhive/pkg/registry/registry"
1414

15-
"github.com/stacklok/toolhive-registry/internal/serverjson"
16-
"github.com/stacklok/toolhive-registry/internal/thvclient"
15+
"github.com/stacklok/toolhive-catalog/internal/serverjson"
16+
"github.com/stacklok/toolhive-catalog/internal/thvclient"
1717
)
1818

1919
var (

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/stacklok/toolhive-registry
1+
module github.com/stacklok/toolhive-catalog
22

33
go 1.25.7
44

internal/thvclient/builder.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77

88
"github.com/stacklok/toolhive/pkg/registry/registry"
99

10-
"github.com/stacklok/toolhive-registry/internal/serverjson"
10+
"github.com/stacklok/toolhive-catalog/internal/serverjson"
1111
)
1212

1313
// CommandBuilder helps build command line arguments for thv.

0 commit comments

Comments
 (0)