Back to Browse

Lunoo MCP Server

Developer ToolsLow Risk9.1MCP RegistryRemote
Free

Server data from the Official MCP Registry

Consensus rankings for 75,000+ products across 2,600+ niches.

About

Consensus rankings for 75,000+ products across 2,600+ niches.

Remote endpoints: streamable-http: https://lunoo.com/mcp

Security Report

9.1
Low Risk9.1Low Risk

Valid MCP server (1 strong, 1 medium validity signals). 3 known CVEs in dependencies Imported from the Official MCP Registry. 1 finding(s) downgraded by scanner intelligence.

3 tools verified · Open access · 4 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

HTTP Network Access

Connects to external APIs or services over the internet.

env_vars

Check that this permission is expected for this type of plugin.

How to Connect

Remote Plugin

No local installation needed. Your AI client connects to the remote endpoint directly.

Add this to your MCP configuration to connect:

{
  "mcpServers": {
    "com-lunoo-rankings": {
      "url": "https://lunoo.com/mcp"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

lunoo-mcp

Public Model Context Protocol (MCP) server for Lunoo, a rankings platform covering more than 231,000 items across more than 2,600 categories on a 0-10 scale.

Ask for rankings in normal language, from anime and laptops to software, travel, books, and thousands of other categories. The server resolves the closest live category, returns scored items with Lunoo links, and refuses unsupported queries instead of inventing a result.

Overview

This is a read-only public proxy over Lunoo's public web API. No authentication required, no database access, no API keys, no cost.

  • Live endpoint: https://lunoo.com/mcp (Streamable HTTP, JSON-RPC 2.0)
  • Transport: Stateless POST over HTTP
  • Caching: Browse page 24h, rankings and items 15 minutes
  • Timeout: 10 seconds per upstream request
  • Coverage: 2,677+ categories and 231,982+ ranked items, verified on 2026-08-21
  • Privacy: No raw prompts, tool arguments, or tool results are stored. See https://lunoo.com/privacy
  • Safety: All three tools are read-only and expose MCP read-only annotations

Security and abuse controls

  • The server listens on 127.0.0.1 by default so a reverse proxy can expose only the intended HTTPS route.
  • Each client is limited to 120 MCP requests per minute.
  • No more than 20 MCP requests and 12 upstream Lunoo requests run at once.
  • JSON bodies are limited to 32 KB, JSON-RPC batches to 20 messages, and tool inputs to documented lengths.
  • The in-memory cache is limited to 256 entries and evicts old keys.
  • User input is encoded into fixed Lunoo paths. It cannot select an arbitrary upstream host.
  • The server does not execute commands, evaluate user code, read local files, or expose environment variables.

Self-hosted deployments should keep the Node port private and expose /mcp through an HTTPS reverse proxy. Do not publish port 8972 directly.

Quick Start

Claude custom connector

Open Claude's connector settings, choose Add custom connector, and enter:

Name: Lunoo Rankings
URL: https://lunoo.com/mcp

No authentication is required. Test with a request such as Find the best laptop for video editing using Lunoo.

Claude Code

In your project's .claude/settings.json:

{
  "mcpServers": {
    "lunoo": {
      "url": "https://lunoo.com/mcp"
    }
  }
}

Or run from any Claude Code session:

claude mcp add --transport http lunoo https://lunoo.com/mcp

Generic HTTP Client

Post JSON-RPC 2.0 requests to https://lunoo.com/mcp. Example:

curl -X POST https://lunoo.com/mcp \
  -H 'Content-Type: application/json' \
  -d '{
    "jsonrpc": "2.0",
    "method": "tools/list",
    "id": 1
  }'

Local Development (self-hosted)

npm install
npm start
# Server listens on http://localhost:8972

Health check:

curl http://localhost:8972/healthz
# {"ok":true,"service":"lunoo-mcp"}

Tools

find_niche

Resolve a normal-language request to live ranking categories. Returns up to 10 matches with confidence, matched terms, item counts, and tracked Lunoo links.

Input:

{
  "query": "string - normal-language request, e.g. 'best laptop for video editing'"
}

Output: Array of niches with slug, display name, Lunoo URL, and JSON endpoint URL.

Example Request:

{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "params": {
    "name": "find_niche",
    "arguments": { "query": "anime" }
  },
  "id": 1
}

Example Response:

{
  "jsonrpc": "2.0",
  "result": {
    "isError": false,
    "content": [
      {
        "type": "text",
        "text": "[\n  {\n    \"slug\": \"anime\",\n    \"name\": \"anime\",\n    \"url\": \"https://lunoo.com/best/anime\",\n    \"rankings_json\": \"https://lunoo.com/best/anime.json\"\n  },\n  ...\n]"
      }
    ]
  },
  "id": 1
}

get_rankings

Fetch ranked items for a category slug or a normal-language request. Returns the resolved category, match explanation, score metadata, and top items.

Input:

{
  "niche": "string - niche slug, e.g. 'anime'",
  "limit": "number? - items to return, 1-50, default 10"
}

Output: Niche metadata plus ranked items with rank, name, score (0-10), description, URL, and confidence label.

Example Request:

{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "params": {
    "name": "get_rankings",
    "arguments": { "niche": "anime", "limit": 3 }
  },
  "id": 2
}

Example Response:

{
  "jsonrpc": "2.0",
  "result": {
    "isError": false,
    "content": [
      {
        "type": "text",
        "text": "{\n  \"name\": \"anime\",\n  \"url\": \"https://lunoo.com/best/anime\",\n  \"item_count\": 1847,\n  \"updated_at\": \"2026-07-02T08:15:00Z\",\n  \"score_scale\": \"0-10\",\n  \"ranking_method\": \"Consensus-based scoring\",\n  \"top_items\": [\n    {\n      \"rank\": 1,\n      \"name\": \"Frieren: Beyond Journey's End\",\n      \"score\": 9.15,\n      \"url\": \"https://lunoo.com/item/frieren-beyond-journeys-end\",\n      \"description\": \"A fantasy adventure about a thousand-year journey...\"\n    },\n    ...\n  ]\n}"
      }
    ]
  },
  "id": 2
}

get_item

Extract structured metadata (JSON-LD) for an item by slug. Parses all schema.org blocks embedded on the item page.

Input:

{
  "slug": "string - item slug, e.g. 'frieren-beyond-journeys-end'"
}

Output: Item URL and array of parsed JSON-LD objects (BreadcrumbList, AggregateRating, etc.).

Example Request:

{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "params": {
    "name": "get_item",
    "arguments": { "slug": "frieren-beyond-journeys-end" }
  },
  "id": 3
}

Example Response:

{
  "jsonrpc": "2.0",
  "result": {
    "isError": false,
    "content": [
      {
        "type": "text",
        "text": "{\n  \"url\": \"https://lunoo.com/item/frieren-beyond-journeys-end\",\n  \"structured_data\": [\n    {\n      \"@context\": \"https://schema.org\",\n      \"@type\": \"AggregateRating\",\n      \"ratingValue\": 9.15,\n      \"ratingCount\": 847\n    },\n    ...\n  ]\n}"
      }
    ]
  },
  "id": 3
}

MCP Initialization

The server implements Model Context Protocol v2025-03-26. Initialize with:

{
  "jsonrpc": "2.0",
  "method": "initialize",
  "params": {
    "protocolVersion": "2025-03-26",
    "capabilities": {},
    "clientInfo": {
      "name": "my-client",
      "version": "1.0.0"
    }
  },
  "id": 0
}

Response includes server capabilities, protocol version, and instructions.

Caching Behavior

Results are cached locally in the live service at https://lunoo.com/mcp:

  • Browse page (used by find_niche): 24 hours
  • Rankings JSON (used by get_rankings): 15 minutes
  • Item pages (used by get_item): 15 minutes

When self-hosting, cache is in-memory per server instance and cleared on restart.

Error Handling

On failure (404, timeout, network error), tools return:

{
  "isError": true,
  "content": [
    {
      "type": "text",
      "text": "Niche \"invalid-slug\" not found (404). Try find_niche to discover available niches."
    }
  ]
}

Never throws unhandled exceptions; all errors are JSON-RPC compliant.

Citation

Link to full rankings pages on Lunoo as:

https://lunoo.com/best/{slug}

Example: https://lunoo.com/best/anime

See https://lunoo.com/llms.txt for how to cite Lunoo rankings in LLM outputs.

Self-Hosted Deployment

Prerequisites

Node 18+, npm

Installation

git clone https://github.com/PeakProductivity/lunoo-mcp.git
cd lunoo-mcp
npm install

Running

npm start
# or with custom port:
PORT=9000 npm start

Production Setup

  1. Use a process manager (PM2, systemd, etc.):
pm2 start server.mjs --name lunoo-mcp
  1. Reverse proxy (nginx):
location /mcp {
  proxy_pass http://localhost:8972;
  proxy_set_header Host $host;
  proxy_set_header X-Real-IP $remote_addr;
}
  1. Monitor cache size and logs periodically.

CORS Policy

The live service accepts browser requests only from the configured Claude origins. Requests from arbitrary browser origins are rejected. Server-side MCP clients without an Origin header are accepted.

Self-hosted instances use the same safe defaults. Override the browser allowlist with the comma-separated MCP_ALLOWED_ORIGINS environment variable when necessary.

API Endpoints

MethodPathDescription
POST/mcpJSON-RPC 2.0 endpoint
GET/healthzHealth check

Support

Found an issue with a ranking? Report it on Lunoo: https://lunoo.com

License

MIT. See LICENSE file.

Links

Reviews

No reviews yet

Be the first to review this server!