Machine Discovery & Agent API
RankSight is built from the ground up to be discovered, queried, and verified by AI agents, LLMs, developer tools, and autonomous crawlers.
Quick Knowledge
Concise index and principles for context windows.
/llms-full.txtFull Knowledge Base
Exhaustive project catalog & algorithm details.
/openapi.jsonOpenAPI 3.1 Spec
Machine-readable JSON schema for all endpoints.
MCP Server
Native tools for Claude Desktop, Cursor, & AI SDKs.
REST API (v1)
Base URL: https://ranksight.lol/api/v1
/api/v1/projectsPaginated list of public projects. Supports query parameters: q, category, product_type, pricing_type, verified, sort (rank|trending|new|shares|name), page, limit.
curl -X GET "https://ranksight.lol/api/v1/projects?sort=rank&limit=10"
/api/v1/projects/:slugFull public metadata for a project, including socials, updates, alternatives, and rank history.
curl -X GET "https://ranksight.lol/api/v1/projects/outbid"
/api/v1/projects/check?url=...Normalized URL and domain existence check to verify if a software product is already cataloged.
curl -X GET "https://ranksight.lol/api/v1/projects/check?url=https://outbid.lol"
/api/v1/rankingsOfficial leaderboard rankings computed from verified 𝕏 distribution, unique sharers, freshness, and quality. Matches the website leaderboard.
curl -X GET "https://ranksight.lol/api/v1/rankings?category=ai-tools"
/api/v1/search?q=...Full-text pattern search against name, description, category, and target audience.
curl -X GET "https://ranksight.lol/api/v1/search?q=research"
/api/v1/projectsSubmit a new project. Rate limited and protected by anti-abuse duplicate filters.
curl -X POST "https://ranksight.lol/api/v1/projects" \
-H "Content-Type: application/json" \
-d '{"name":"Example","website_url":"https://example.com","category_id":"developer-tools","tagline":"Fast dev tool","what_it_does":"Accelerates dev workflows","owner_email":"founder@example.com"}'Model Context Protocol (MCP) Server
Connect Claude Desktop, Cursor, or your autonomous agent directly to live RankSight data.
Add the RankSight MCP server to your claude_desktop_config.json or cursor configuration:
{
"mcpServers": {
"ranksight": {
"command": "npx",
"args": ["-y", "tsx", "src/mcp/server.ts"]
}
}
}Exposed MCP Tools:
search_projects(query, limit?)- Search projects by keyword, domain, or technologyget_project(slug)- Inspect complete project metadata, verification status, and rank historyget_rankings(category?, limit?, page?)- Retrieve official leaderboard rankingsget_categories()- List all categories with live project countsget_new_projects(limit?)- Query newly listed tools and startupsget_trending(limit?)- Query high-momentum projects by 𝕏 share velocitycheck_project(url)- Verify if a domain is already cataloged on RankSightget_stats()- Query live platform metrics