Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog
Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

AllMCPs on GitHub (opens in a new tab)
Launched onTiny Startupstinystartups.com
Explore
  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Random discovery New
  • Submit a server
  • Pricing & Boost Boost
Learn
  • Guides hub
  • What is MCP?
  • Install guide
  • Build an MCP server
  • Deploy an MCP server
  • Security guide
  • Troubleshooting
  • MCP for SEO & AEO
  • Protocol versioning
  • Transports: stdio vs HTTP
  • State of MCP (stats)
  • Blog & updates
Tools
  • All developer tools
  • Config generator
  • Config validator
  • Config auditor
  • MCP playground
  • Token calculator
  • OpenAPI → MCP
  • Badge generator
For agents
  • REST API docs
  • Trust & traffic Live
  • Remote MCP server SSE ↗ (opens in a new tab)
  • llms.txt ↗ (opens in a new tab)
  • Catalog JSON ↗ (opens in a new tab)
Company
  • About
  • Advertise Sponsor
  • Contact
  • GitHub ↗ (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZoneAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZone
© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. ☁️ Cloud Platforms
  3. Searcher OS
Searcher OS logo
Health: ActiveRecent health check succeeded.Last checked 9/21/2026, 4:16:40 PM

Searcher OS

User RatingsBe the first to rate and review this MCP server! Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time — check back soon.
View RepositoryVisit Website

AI agent access to your Searcher OS deal feed, pipeline, buy boxes, CIM analysis, and broker CRM.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent — or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON ▾

Client Config & Setup

Remote HTTP
Choose your client or environment
Target File:~/Library/Application Support/Claude/claude_desktop_config.json
claude_desktop_config.json
{
  "mcpServers": {
    "searcher-os-2": {
      "url": "https://searcheros.ai/api/mcp/mcp"
    }
  }
}

💡 Paste the JSON block into your client's configuration file under mcpServers, then restart the application.

Install Directory Badge Claim listing Alternatives☁️ More in Cloud Platforms

Documentation Overview

Searcher OS — MCP Server

Connect your AI agent to Searcher OS, the operating system for acquisition entrepreneurs sourcing and buying small to mid-sized businesses.

This is a remote, hosted MCP server. There is nothing to install or self-host — you point your MCP client at a URL and authenticate. This repository contains the published server manifest and connection documentation; the server itself is a managed service.

Listed in the Official MCP Registry as ai.searcheros/searcher-os.


Connection

Streamable HTTPhttps://searcheros.ai/api/mcp/mcp
SSEhttps://searcheros.ai/api/mcp/sse
AuthOAuth 2.1 (preferred) or Bearer API key
Discoveryhttps://searcheros.ai/.well-known/mcp.json

Note the doubled path segment on the Streamable HTTP endpoint. It is /api/mcp/mcp, not /api/mcp — the latter returns 404.

OAuth (recommended)

Most clients discover everything they need on their own. Add the server URL and your client will walk you through browser-based sign-in and consent — no key to copy, and access is revocable from your account.

config.json
{
  "mcpServers": {
    "searcher-os": {
      "url": "https://searcheros.ai/api/mcp/mcp"
    }
  }
}

API key

For headless clients that don't implement the OAuth flow. Generate a key under Settings → LLM Connect → Advanced: API Key.

config.json
{
  "mcpServers": {
    "searcher-os": {
      "url": "https://searcheros.ai/api/mcp/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

Treat the key like a password — it carries the same access to your pipeline that you have.


Tools

37 tools across 11 categories.

CategoryToolsWhat it covers
Context2Connectivity check plus profile, buy boxes, pipeline summary, feed stats
Pipeline8View, create, update, move, and kill deals
Feed5Search deals, count, statistics, save, dismiss
Buy Box1List acquisition criteria (price, industry, location)
Inbox4List, view, link, and ignore inbound broker email
Broker CRM4List, view, create brokers; log interactions
CIM Analysis4List, view analysis, search CIM documents, append supplementary financials
Confirmation4List pending, check status, resolve, auto-approve settings
Calculator1SBA 7(a) loan modeling with DSCR
Tasks2List and update deal tasks
Deal Documents2Mint upload URLs and register documents against a deal

Write operations that meaningfully change your pipeline route through a confirmation step rather than executing silently. You can tune this under auto-approve settings.


Requirements

  • A Searcher OS account on the Searcher or Deal Team plan
  • Rate limit: 100 requests/minute

New accounts start with a 7-day free trial.


Example prompts

Once connected, talk to your pipeline in plain language:

  • "What's in my pipeline at the LOI stage, and which deals have gone stale?"
  • "Find manufacturing businesses in Texas under $3M with SDE above $400K."
  • "Summarize the CIM for the HVAC deal and flag anything odd in the add-backs."
  • "Run the numbers on a $2.4M purchase at 10% down and tell me the DSCR."
  • "Move Riverside Plumbing to Due Diligence and log that I spoke with the broker."

Links

  • Searcher OS
  • Connection help
  • LLM Connect settings
  • Registry entry
  • What is MCP?

Support

Connection problems, access questions, or bug reports: support@searcheros.ai, or open an issue here.


Searcher OS is a commercial hosted service. This repository holds its public MCP manifest and documentation only; it is not the product source and carries no license to the service itself. Use of the server is governed by the Searcher OS terms.

Read the full README →View source on GitHub →

Related MCP Servers

View all in Cloud Platforms View all alternatives
  • MCP Kubernetes logoMCP Kubernetes

    Kubernetes monitoring & ops for AI agents — safe-by-default access modes and guards.

    ☁️ Cloud Platforms0 views
    Compare vs MCP Kubernetes →
  • Datoon logoDatoon

    Smart structured-data to TOON gateway: converts to TOON only when it saves LLM tokens.

    ☁️ Cloud Platforms1 views
    Compare vs Datoon →
  • No Crd logoNo Crd

    Dynamic pod spawner & proxy for ephemeral AI agent workspaces on Kubernetes without CRDs

    ☁️ Cloud Platforms0 views
    Compare vs No Crd →
  • Unraid RMCP logoUnraid RMCP

    Rust MCP server and CLI for Unraid GraphQL operations across NAS, Docker, VM, and storage workflows.

    ☁️ Cloud Platforms2 views
    Compare vs Unraid RMCP →

Reviews

No reviews yet — be the first to share how this listing worked for you.

Frequently Asked Questions about Searcher OS

Searcher OS is a hosted MCP server. Add it as a remote server in your client's config: "mcpServers": { "searcher-os": { "url": "https://searcheros.ai/api/mcp/mcp" } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewSearcher OS AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/searcher-os-2?style=directory)](https://allmcps.com/mcp/searcher-os-2)
HTML Embed
<a href="https://allmcps.com/mcp/searcher-os-2"><img src="https://allmcps.com/api/badge/searcher-os-2?style=directory" alt="Searcher OS on AllMCPs" /></a>

Technical Specs & Signals

Category☁️Cloud Platforms
More technical detailsExpand ▾
TransportSSE (Remote)
Last updatedAug 7, 2026
13/13 checks healthy over the last 46d
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
GitHub stars0
GitHub Star CountTotal stargazers on GitHub representing community popularity (0 stars).
Last commit1mo ago
Last Repository CommitThe most recent commit or push recorded for this server's GitHub repository.Last commit on Aug 7, 2026
37Quality signal: Fair · 37/100How this signal is calculated ▾
Server availabilityNot measured

Not scored for repo-hosted servers — we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership10/20
Documentation & tools16/30
Adoption & activity2/15
Community engagement0/10

A guidance signal from public completeness & health data — not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

★ FeaturedAllMCPs Server logo

AllMCPs Server

The official MCP server for AllMCPs.com - submit and manage tools directly from your AI. The open directory for MCP servers. Connect Claude, Cursor, Windsurf, and AI agents to databases, tools, files, and APIs. Explore 10,000+ servers. AllMCPs is the premier, open directory for discovering, evaluating, and installing Model Context Protocol (MCP) servers to equip AI agents and LLMs with real-world superpowers.

Explore Server →

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to unlock edit access and the Official badge — proof is checked automatically, then reviewed by our team.

Free dofollow backlink: add your website and place the AllMCPs badge on it — no claim needed. We detect it automatically and keep it verified as long as the badge stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in ☁️ Cloud Platforms →Best MCP servers for Cloud Platforms →Alternatives to Searcher OS →Install in Claude DesktopInstall in CursorInstall in VS CodeSetup guides for all 13 MCP clients