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
6 changes: 3 additions & 3 deletions docs/app/views/docs/mcp.rb
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def view_template
# Claude Code
div(class: "space-y-2") do
Heading(level: 3) { "Claude Code" }
Codeblock("claude mcp add --transport http ruby-ui https://rubyui.com/mcp", syntax: :shell, clipboard: true)
Codeblock("claude mcp add --transport http ruby-ui https://www.rubyui.com/mcp", syntax: :shell, clipboard: true)
end

# Cursor
Expand Down Expand Up @@ -118,7 +118,7 @@ def cursor_config_json
<<~JSON
{
"mcpServers": {
"ruby-ui": { "url": "https://rubyui.com/mcp" }
"ruby-ui": { "url": "https://www.rubyui.com/mcp" }
}
}
JSON
Expand All @@ -132,7 +132,7 @@ def zed_config_json
<<~JSON
{
"context_servers": {
"ruby-ui": { "source": "http", "url": "https://rubyui.com/mcp" }
"ruby-ui": { "source": "http", "url": "https://www.rubyui.com/mcp" }
}
}
JSON
Expand Down
2 changes: 1 addition & 1 deletion mcp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Model Context Protocol (MCP) server for [Ruby UI](https://rubyui.com). Lets AI coding agents discover, inspect, and install Ruby UI components.

Hosted endpoint: **https://rubyui.com/mcp**
Hosted endpoint: **https://www.rubyui.com/mcp**

## Tools

Expand Down
2 changes: 1 addition & 1 deletion mcp/lib/ruby_ui/mcp/tools/get_project_registries.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def call(**)
{
registries: [{
name: "ruby_ui",
url: "https://rubyui.com/mcp",
url: "https://www.rubyui.com/mcp",
description: "Ruby UI components for Phlex + Rails."
}]
}
Expand Down