diff --git a/docs/customize/deep-dives/rules.mdx b/docs/customize/deep-dives/rules.mdx
index af2ad17ebec..d928c32b1e7 100644
--- a/docs/customize/deep-dives/rules.mdx
+++ b/docs/customize/deep-dives/rules.mdx
@@ -94,7 +94,7 @@ For example, you can say "Create a rule for this", and a rule will be created fo
Rules can also be created and managed on the Continue Mission Control:
-1. **Browse existing rules**: [Explore available rules](https://hub.continue.dev/explore?type=rules)
+1. **Browse existing rules**: [Explore available rules](https://hub.continue.dev/hub?type=rules)
2. **Create new rules**: [Create your own](https://hub.continue.dev/new?type=block&blockType=rules) in the Hub
3. **Copy from local rules**: Copy/paste content from your `.continue/rules` files to create Hub rules
diff --git a/docs/customize/model-providers/more/asksage.mdx b/docs/customize/model-providers/more/asksage.mdx
index 8b84d8c3451..8654d5ca13c 100644
--- a/docs/customize/model-providers/more/asksage.mdx
+++ b/docs/customize/model-providers/more/asksage.mdx
@@ -4,7 +4,7 @@ slug: ../asksage
---
- **Discover Ask Sage models [here](https://hub.continue.dev/explore?q=Ask%20Sage)**
+ **Discover Ask Sage models [here](https://hub.continue.dev/hub?q=Ask%20Sage)**
diff --git a/docs/customize/model-providers/more/deepseek.mdx b/docs/customize/model-providers/more/deepseek.mdx
index b2e7d4602f0..6e39c9227e3 100644
--- a/docs/customize/model-providers/more/deepseek.mdx
+++ b/docs/customize/model-providers/more/deepseek.mdx
@@ -4,7 +4,7 @@ slug: ../deepseek
---
- **Discover DeepSeek models [here](https://hub.continue.dev/explore?q=DeepSeek)**
+ **Discover DeepSeek models [here](https://hub.continue.dev/hub?q=DeepSeek)**
diff --git a/docs/customize/model-providers/top-level/gemini.mdx b/docs/customize/model-providers/top-level/gemini.mdx
index b8c5ec445fe..40ca45ba3c5 100644
--- a/docs/customize/model-providers/top-level/gemini.mdx
+++ b/docs/customize/model-providers/top-level/gemini.mdx
@@ -5,7 +5,7 @@ sidebarTitle: "Gemini"
---
- **Discover Google models [here](https://hub.continue.dev/explore?q=Gemini)**
+ **Discover Google models [here](https://hub.continue.dev/hub?q=Gemini)**
diff --git a/docs/customize/prompts.mdx b/docs/customize/prompts.mdx
index e0b28df9e20..85fbfc6d604 100644
--- a/docs/customize/prompts.mdx
+++ b/docs/customize/prompts.mdx
@@ -12,6 +12,6 @@ description: "These are the specialized instructions that shape how models and a
## Learn More
-- [Explore prompts](https://hub.continue.dev/explore?type=prompts) on the Hub
+- [Explore prompts](https://hub.continue.dev/hub?type=prompts) on the Hub
- Learn more in the [prompts deep dive](/customize/deep-dives/prompts)
- View [`prompts`](/reference#prompts) in the YAML Reference for more details
diff --git a/docs/ide-extensions/agent/how-to-customize.mdx b/docs/ide-extensions/agent/how-to-customize.mdx
index c087a42bfd0..315e39554ba 100644
--- a/docs/ide-extensions/agent/how-to-customize.mdx
+++ b/docs/ide-extensions/agent/how-to-customize.mdx
@@ -25,7 +25,7 @@ models:
## How to Add MCP Tools
-You can add MCP servers to your configuration to give Agent mode access to more tools. Explore [MCP Servers on Mission Control](https://hub.continue.dev/explore?type=mcpServers) and consult the [MCP guide](/customize/deep-dives/mcp) for more details.
+You can add MCP servers to your configuration to give Agent mode access to more tools. Explore [MCP Servers on Mission Control](https://hub.continue.dev/hub?type=mcpServers) and consult the [MCP guide](/customize/deep-dives/mcp) for more details.
## How to Configure Tool Policies
diff --git a/docs/mission-control/configs/intro.mdx b/docs/mission-control/configs/intro.mdx
index 2b6fbec55bb..b812c5df1d3 100644
--- a/docs/mission-control/configs/intro.mdx
+++ b/docs/mission-control/configs/intro.mdx
@@ -74,7 +74,7 @@ You can interact with configs in three main ways:
- Browse the [Continue Mission Control](https://hub.continue.dev/explore?type=configs) to see what configs others have built
+ Browse the [Continue Mission Control](https://hub.continue.dev/hub?type=configs) to see what configs others have built
diff --git a/extensions/cli/src/ui/MCPSelector.tsx b/extensions/cli/src/ui/MCPSelector.tsx
index 5ac4f1979e1..2bfb5e441af 100644
--- a/extensions/cli/src/ui/MCPSelector.tsx
+++ b/extensions/cli/src/ui/MCPSelector.tsx
@@ -288,7 +288,7 @@ export const MCPSelector: React.FC = ({ onCancel }) => {
case "explore-mcp-servers":
// Open the MCP servers hub in the default browser
const open = (await import("open")).default;
- await open("https://hub.continue.dev/explore?type=mcpServers");
+ await open("https://hub.continue.dev/hub?type=mcpServers");
setMessage("Opened MCP servers hub in browser");
break;
case "back":