MCP Tool Registry
Plug Scooby-Do's mystery tools directly into your AI assistant. Works with Claude Desktop, VS Code Copilot, Cursor, and any MCP-compatible client.
Quick Start
Add to your claude_desktop_config.json:
{
"mcpServers": {
"scooby-mcp": {
"command": "scooby-mcp",
"args": []
}
}
}
Restart Claude Desktop after saving. The binary must be in your PATH.
Add to your .vscode/mcp.json:
{
"servers": {
"scooby-mcp": {
"type": "stdio",
"command": "scooby-mcp",
"args": []
}
}
}
VS Code will detect the config and prompt to enable the MCP server.
Add to your .cursor/mcp.json:
{
"mcpServers": {
"scooby-mcp": {
"command": "scooby-mcp",
"args": [],
"type": "stdio"
}
}
}
Open Cursor Settings → MCP to verify the server is connected.
The server uses stdio transport (JSON-RPC 2.0 over stdin/stdout):
# Install from GitHub releases curl -LO https://github.com/Brutus1066/Scooby-Doo-Ai-KZ/releases/latest/download/scooby-mcp chmod +x scooby-mcp sudo mv scooby-mcp /usr/local/bin/ # Or build from source git clone https://github.com/Brutus1066/Scooby-Doo-Ai-KZ.git cd Scooby-Doo-Ai-KZ/crates cargo build --release -p scooby-mcp # Binary at: target/release/scooby-mcp
Compatible with any MCP client that supports stdio transport (protocol version 2024-11-05).
Tool Registry
14 developer tools available through the MCP server. Click any tool to see details.
Encoding & Decoding 8 tools
base64_encode
encode
Encode text to Base64
text
string
required
"Scooby-Doo""U2Nvb2J5LURvbw=="base64_decode
decode
Decode a Base64 string back to text
text
string
required
"U2Nvb2J5LURvbw==""Scooby-Doo"hex_encode
encode
Encode text to hexadecimal
text
string
required
"hello""68656c6c6f"hex_decode
decode
Decode a hexadecimal string back to text
text
string
required
"68656c6c6f""hello"url_encode
encode
URL-encode text (percent-encoding)
text
string
required
"hello world""hello%20world"url_decode
decode
Decode a URL-encoded (percent-encoded) string
text
string
required
"hello%20world""hello world"html_encode
encode
HTML-encode text (escape &, <, >, ", ')
text
string
required
"<b>bold</b>""<b>bold</b>"html_decode
decode
Decode HTML entities back to text
text
string
required
"<b>bold</b>""<b>bold</b>"Hashing 2 tools
hash
hash
Hash text with a specified algorithm (MD5, SHA-1, SHA-256, SHA-512)
text
string
required
algorithm
enum
required
md5 | sha1 | sha256 | sha512
hash("hello", "sha256")"2cf24dba..."hash_all
hash
Hash text with all four algorithms at once
text
string
required
"hello"Generation 4 tools
uuid
generate
Generate a random UUID v4
No parameters
"f47ac10b-58cc-4372-a567-0e02b2c3d479"password
generate
Generate a random password with customizable rules
length
integer
default: 24
uppercase
boolean
default: true
lowercase
boolean
default: true
numbers
boolean
default: true
symbols
boolean
default: true
password(32, symbols=false)"kR7mN2xP9qL5wT8jB4vF6yH3"random_hex
generate
Generate random bytes as a hexadecimal string
bytes
integer
default: 32
random_hex(16)random_base64
generate
Generate random bytes as a Base64 string
bytes
integer
default: 32
random_base64(16)