Skip to content

Commit fadbba2

Browse files
Fix remaining broken links from docs reorganization (#789)
Follow-up to #728. This fixes broken links due to file renames. Fixes #788. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude <[email protected]>
1 parent 3134575 commit fadbba2

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

cmd/publisher/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
CLI tool for publishing MCP servers to the registry.
44

5-
> These docs are for contributors. See the [Publisher User Guide](../../docs/guides/publishing/publish-server.md) for end-user documentation.
5+
> These docs are for contributors. See the [Publisher User Guide](../../docs/modelcontextprotocol-io/quickstart.mdx) for end-user documentation.
66
77
## Quick Development Setup
88

docs/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ The MCP registry provides MCP clients with a list of MCP servers, like an app st
44

55
## I want to...
66

7-
- **📤 Publish my MCP server**[Publishing Guide](guides/publishing/publish-server.md)
8-
- **📥 Consume registry data**[API Usage Guide](guides/consuming/use-rest-api.md)
9-
- **🔌 Understand the registry's purpose**[Ecosystem vision](explanations/ecosystem-vision.md)
7+
- **📤 Publish my MCP server**[Publishing Guide](modelcontextprotocol-io/quickstart.mdx)
8+
- **📥 Consume registry data**[API Usage Guide](modelcontextprotocol-io/registry-aggregators.mdx)
9+
- **🔌 Understand the registry's purpose**[Ecosystem vision](design/ecosystem-vision.md)
1010
- **📋 Look up specific information**[server.json spec](reference/server-json/generic-server-json.md) | [API spec](reference/api/generic-registry-api.md) | [CLI reference](reference/cli/commands.md)
1111
- **🤝 Add reference to my community project**[Community Projects](community-projects.md)
1212

docs/community-projects.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Browse the official MCP Registry in your browser!
1414

1515
### MCP Registry Clients
1616

17-
- [REST API](guides/consuming/use-rest-api.md) - HTTP API
17+
- [REST API](modelcontextprotocol-io/registry-aggregators.mdx) - HTTP API
1818
- [go-mcp-registry](https://github.com/leefowlercu/go-mcp-registry) - Go SDK
1919
- [mcp-registry-spec-sdk](https://www.npmjs.com/package/mcp-registry-spec-sdk) - TypeScript client for the MCP Registry
2020
- [LangChain4j MCP Registry Java client](https://docs.langchain4j.dev/tutorials/mcp/#mcp-registry-client) - Java API

docs/reference/api/official-registry-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This document describes the API for the official MCP Registry hosted at `registry.modelcontextprotocol.io`.
44

5-
This API is based on the [generic registry API](./generic-registry-api.md) with additional endpoints and authentication. For practical examples of consuming the API, see the [API usage guide](../../guides/consuming/use-rest-api.md). For publishing servers using the API, see the [publishing guide](../../guides/publishing/publish-server.md).
5+
This API is based on the [generic registry API](./generic-registry-api.md) with additional endpoints and authentication. For publishing servers using the API, see the [publishing guide](../../modelcontextprotocol-io/quickstart.mdx).
66

77
## Base URLs
88

docs/reference/cli/commands.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Complete command reference for the `mcp-publisher` CLI tool.
44

5-
See the [publishing guide](../../guides/publishing/publish-server.md) for a walkthrough of using the CLI to publish a server.
5+
See the [publishing guide](../../modelcontextprotocol-io/quickstart.mdx) for a walkthrough of using the CLI to publish a server.
66

77
## Installation
88

@@ -72,7 +72,7 @@ mcp-publisher login github-oidc [--registry=URL]
7272
- Requires `id-token: write` permission in workflow
7373
- No browser interaction needed
7474

75-
Also see [the guide to publishing from GitHub Actions](../../guides/publishing/github-actions.md).
75+
Also see [the guide to publishing from GitHub Actions](../../modelcontextprotocol-io/github-actions.mdx).
7676

7777
#### DNS Verification
7878
```bash
@@ -211,7 +211,7 @@ mcp-publisher login none [--registry=URL]
211211

212212
Publish server to the registry.
213213

214-
For detailed guidance on the publishing process, see the [publishing guide](../../guides/publishing/publish-server.md).
214+
For detailed guidance on the publishing process, see the [publishing guide](../../modelcontextprotocol-io/quickstart.mdx).
215215

216216
**Usage:**
217217
```bash

docs/reference/server-json/generic-server-json.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
A `server.json` file is a standardized way to describe MCP servers for registry publishing, client discovery, and package management.
44

55
Also see:
6-
- For step-by-step instructions on creating and using server.json files, see the [publishing guide](../../guides/publishing/publish-server.md).
6+
- For step-by-step instructions on creating and using server.json files, see the [publishing guide](../../modelcontextprotocol-io/quickstart.mdx).
77
- For understanding the validation requirements when publishing to the official registry, see [official registry requirements](./official-registry-requirements.md).
88

99
## Browse the Complete Schema

docs/reference/server-json/official-registry-requirements.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This document describes the additional requirements and validation rules that apply when publishing to the official MCP Registry at `registry.modelcontextprotocol.io`.
44

5-
For step-by-step publishing instructions, see the [publishing guide](../../guides/publishing/publish-server.md).
5+
For step-by-step publishing instructions, see the [publishing guide](../../modelcontextprotocol-io/quickstart.mdx).
66

77
## Overview
88

@@ -17,13 +17,13 @@ While the [generic server.json format](./generic-server-json.md) defines the bas
1717

1818
Publishers must prove ownership of their namespace. For example to publish to `com.example/server`, the publisher must prove they own the `example.com` domain.
1919

20-
See the [publishing guide](../../guides/publishing/publish-server.md) for authentication details for GitHub and domain namespaces.
20+
See the [publishing guide](../../modelcontextprotocol-io/quickstart.mdx) for authentication details for GitHub and domain namespaces.
2121

2222
## Package Ownership Verification
2323

2424
All packages must include metadata proving the publisher owns them. This prevents impersonation and ensures authenticity (see more reasoning in [#96](https://github.com/modelcontextprotocol/registry/issues/96)).
2525

26-
For detailed verification requirements for each registry type, see the [publishing guide](../../guides/publishing/publish-server.md).
26+
For detailed verification requirements for each registry type, see the [publishing guide](../../modelcontextprotocol-io/quickstart.mdx).
2727

2828
## Restricted Registry Base URLs
2929

0 commit comments

Comments
 (0)