Search AI-ready websites, inspect indexed site details, verify MCP endpoints, and discover tools and APIs using the Not Human Search MCP server
Not Human Search is a remote MCP server that lets AI agents search a curated index of 1,750+ AI-ready websites, inspect indexed site details, submit new sites for analysis, and verify live MCP endpoints via JSON-RPC probe. It is designed for AI agents that need to discover tools, APIs, and services at runtime without relying on hardcoded lists.
Add the Not Human Search MCP server to your client configuration. The endpoint uses streamable HTTP and requires no authentication.
{
"mcpServers": {
"not-human-search": {
"url": "https://nothumansearch.ai/mcp"
}
}
}
No API key or authentication is required.
search_agentsSearch the index of 1,750+ AI-ready websites by keyword. Returns ranked results with scores, categories, and available endpoints.
search_agents({ query: "code review tools", limit: 10 })
get_site_detailsCheck a specific domain's AI-readiness score and available machine-readable endpoints.
get_site_details({ domain: "linear.app" })
get_statsGet aggregate index statistics, including total indexed sites, categories, and endpoint coverage.
get_stats({})
submit_siteSubmit a URL for crawling and AI-readiness analysis.
submit_site({ url: "https://example.com" })
verify_mcpVerify whether a URL is a live MCP endpoint by sending a JSON-RPC probe and checking for a valid response.
verify_mcp({ url: "https://example.com/mcp" })
list_categoriesList available discovery categories for narrowing searches.
list_categories({})
get_top_sitesRetrieve top-ranked indexed sites.
get_top_sites({ limit: 10 })
register_monitorRegister a domain monitor using a user-provided email address.
register_monitor({ domain: "example.com", email: "[email protected]" })
Use @not-human-search-mcp to find code review tools that expose MCP or API endpoints.
The agent will call search_agents({ query: "code review", limit: 10 }) and return ranked results with scores and endpoint details.
Use @not-human-search-mcp to check the AI-readiness of linear.app.
The agent will call get_site_details({ domain: "linear.app" }) and return the site's score breakdown.
Use @not-human-search-mcp to verify that https://heliumtrades.com/mcp is a working MCP server.
The agent will call verify_mcp({ url: "https://heliumtrades.com/mcp" }) and confirm whether it responds to JSON-RPC.
search_agents for broad discovery, then get_site_details for detailed analysis of specific indexed resultsverify_mcp to confirm an MCP endpoint is live before wiring it into an agent workflowsubmit_site when a relevant site is absent from the index and the user wants it analyzedregister_monitor only with an email address the user explicitly provides for monitoringverify_mcp sends a JSON-RPC probe to the target URL; only use it on URLs you expect to be MCP endpoints.register_monitor requires a user-provided email address and consent to receive monitoring notifications.@mcp-builder - For building your own MCP servers@ai-dev-jobs-mcp - Search AI/ML job listings via MCP