recommended-by-mcp
v0.1.0
Published
Stdio MCP server for managing recommended.by lists from agents like OpenClaw, Codex, Claude, and Cursor.
Maintainers
Readme
recommended-by-mcp
Stdio MCP server for managing your recommended.by lists from agents like OpenClaw, Codex, Claude Desktop, Claude Code, Cursor, and Windsurf.
The package talks to the recommended.by REST API and exposes MCP tools over stdio. This is useful for clients that do not support remote HTTP MCP headers consistently: the agent launches this package locally, and the package handles recommended.by authentication.
Quick Start
Create an API key in Dashboard -> Profile & URL -> API Keys, then authenticate the package once:
npx recommended-by-mcp@latest login rb_live_your_key_hereThen configure your MCP client to run:
npx -y recommended-by-mcp@latestYou can also avoid local storage and pass the key through an environment variable:
RECOMMENDED_BY_API_KEY=rb_live_your_key_here npx -y recommended-by-mcp@latestAuthentication
The server resolves auth in this order:
--api-key rb_live_...RECOMMENDED_BY_API_KEY- saved config from
recommended-by-mcp login
The saved config lives at:
- macOS:
~/Library/Application Support/recommended-by-mcp/config.json - Linux:
~/.config/recommended-by-mcp/config.json - Windows:
%APPDATA%\recommended-by-mcp\config.json
Remove the saved key with:
npx recommended-by-mcp@latest logoutCheck which account the key can access:
npx recommended-by-mcp@latest whoamiMCP Tools
recommended_list_listsrecommended_create_listrecommended_get_listrecommended_update_listrecommended_delete_listrecommended_list_itemsrecommended_add_itemrecommended_update_itemrecommended_delete_item
Client Examples
Codex
Add this to ~/.codex/config.toml:
[mcp_servers.recommended_by]
command = "npx"
args = ["-y", "recommended-by-mcp@latest"]
env = { RECOMMENDED_BY_API_KEY = "rb_live_your_key_here" }OpenClaw
openclaw mcp add recommended-by \
--command npx \
--arg -y \
--arg recommended-by-mcp@latest \
--env RECOMMENDED_BY_API_KEY=rb_live_your_key_here
openclaw mcp doctor recommended-by --probeClaude Desktop
Add this to claude_desktop_config.json:
{
"mcpServers": {
"recommended-by": {
"command": "npx",
"args": ["-y", "recommended-by-mcp@latest"],
"env": {
"RECOMMENDED_BY_API_KEY": "rb_live_your_key_here"
}
}
}
}Development
pnpm install
pnpm --filter recommended-by-mcp build
pnpm --filter recommended-by-mcp test