- Home
- MCP servers
- Flippa
Flippa
- typescript
1
GitHub Stars
typescript
Language
4 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"sind00-flippa-mcp": {
"command": "npx",
"args": [
"flippa-mcp-server"
],
"env": {
"FLIPPA_API_TOKEN": "YOUR_TOKEN_HERE"
}
}
}
}Flippa MCP Server lets Claude access Flippa marketplace data through five focused tools running locally. It requires no API key or Flippa account and works with your Claude setup to search listings, pull details, analyze valuations, find comparables, and generate market overviews.
How to use
You run the Flippa MCP Server on your machine and connect to it with your MCP client. The server exposes five tools that let you search listings, retrieve full listing data, analyze valuations, find comparable sales, and view market-wide statistics. Use these tools in sequence to explore opportunities, validate pricing, and compare listings against market trends.
How to install
Start by running the MCP server with the following command.
npx flippa-mcp-server
If you prefer a global install, you can install the MCP server package globally and then run it.
npm install -g flippa-mcp-server
Configure Claude Desktop to load the MCP server. Use the following configuration to register the server for Claude Desktop to invoke.
{
"mcpServers": {
"flippa": {
"command": "npx",
"args": ["flippa-mcp-server"]
}
}
}
Place the configuration in Claude Desktop at the appropriate path for your operating system. The typical locations are shown here.
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
Linux: ~/.config/claude/claude_desktop_config.json
Claude Desktop tips and notes
No API key is required to use the Flippa MCP Server. The Flippa listings API is public and all five tools work without authentication or a Flippa account.
Configuration
You can customize how the MCP server connects to Flippa by using environment variables. The following variables are supported.
{
"mcpServers": {
"flippa": {
"command": "npx",
"args": ["flippa-mcp-server"],
"env": {
"FLIPPA_API_TOKEN": "your-token-here"
}
}
}
}
Supported property types
The server supports a range of marketplace property types such as websites, SaaS, ecommerce stores, FBA businesses, mobile apps, YouTube channels, newsletters, services, and more. This enables you to tailor searches and analyses to the exact kind of listing you are evaluating.
Development
If you want to contribute or run the server from source, follow these commands to clone and build the project, then start the server.
git clone https://github.com/sind00/flippa-mcp.git
cd flippa-mcp
npm install
npm run dev # Watch mode with tsx
npm run build # Compile TypeScript
npm start # Run compiled server
Support and license
If the Flippa MCP Server helps you uncover great deals, consider sponsoring to support ongoing development. The project is released under the MIT License.
Tools
The server exposes five core tools to interact with Flippa data. Each tool performs a specific function to help you search, view, analyze, and compare listings.
Available tools
flippa_search_listings
Search and browse listings with filters for type, status, sale method, and sorting.
flippa_get_listing
Get complete details for a listing by its ID, including pricing, revenue, traffic, and seller info.
flippa_analyze_listing
Compute valuation metrics such as revenue multiple, ROI, risk factors, and a buy/pass verdict.
flippa_comparable_sales
Find comparable listings and retrieve aggregate pricing statistics.
flippa_market_overview
Provide market-wide statistics across property types to summarize the marketplace.