Web tools for local models.
Lookup is a small Rust MCP server for search, reading pages, research, news, weather, time, calculations, conversions, and torrent search.
tools
install
Clones the repo, ensures Rust is installed via rustup, compiles the optimized release binary, and performs a live MCP handshake test. No sudo required.
git clone https://github.com/luvettee/Lookup.git
cd Lookup
chmod +x setup.sh && ./setup.sh
Paste this into your client's MCP configuration with the generated absolute binary path:
{
"mcpServers": {
"Lookup": {
"command": "/path/to/Lookup/target/release/lookup",
"args": []
}
}
}
Clones the repo, downloads rustup if cargo is missing, builds the release binary, and outputs your formatted Windows MCP JSON.
git clone https://github.com/luvettee/Lookup.git
cd Lookup
.\setup.ps1
Windows configuration uses escaped backslashes:
{
"mcpServers": {
"Lookup": {
"command": "C:\\path\\to\\Lookup\\target\\release\\lookup.exe",
"args": []
}
}
}
If Cargo is already installed on your path:
git clone https://github.com/luvettee/Lookup.git
cd Lookup
cargo build --release
The binary will be located at target/release/lookup (or target\release\lookup.exe on Windows).