INDIVIDUAL MCP TOOL
set_site_access
Set who can reach a website: public serves it to anyone who has the link, private serves it only to members of the organization that owns it, and password serves it to anyone who enters a shared visitor password.
LIVE ENDPOINT
https://api.valet.dev/mcp
Connect to this endpoint to inspect the live schema for set_site_access and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- A tool name, description or schema mentions credentials.
- A tool name or description suggests retrieving external content.
Parent server
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.valet]
url = "https://api.valet.dev/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"valet": {
"type": "http",
"url": "https://api.valet.dev/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: valet
Remote MCP URL: https://api.valet.dev/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"valet": {
"url": "https://api.valet.dev/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"valet": {
"type": "http",
"url": "https://api.valet.dev/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "valet",
"transport": "streamable-http",
"url": "https://api.valet.dev/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
delete_site— Permanently delete a website and stop serving it.get_design_system— Get the design system to follow before you build or substantially rewrite a page.get_site— Get one website's URL, access mode, version, and expiry.list_sites— List the websites in a Valet organization: name, URL, access mode, and when each was last published.publish_site— Publish files as a live website on the public internet, served over HTTPS.rename_site— Rename a website and move it to the URL derived from its new name.