📸 Snap & Post Instantly
Take a photo in your LLM or agent, provide your zip code, and post directly to FastList. Share what you have, sell, or give away—right from your chat or AI interface. FastList makes classified listings as easy as sending a message.
Welcome to FastList
FastList is an agentic, next-generation classified site. Post, browse, and interact with listings using your favorite AI assistant or agent. Built on the Model Context Protocol (MCP), FastList is designed for seamless integration with LLMs and agentic workflows.
How to Use
- Connect your AI assistant or agent to FastList using MCP.
- Browse, create, update, or delete classified posts programmatically or via chat.
- Supports authentication, categories, and more – all via API or agent tools.
Connect via MCP
- SSE Endpoint (Legacy):
https://fastlist.org/sse
- Modern HTTP Endpoint:
https://fastlist.org/mcp
Below are configuration examples for different tools and environments:
Claude
{ "mcpServers": { "fastlist-mcp": { "url": "https://fastlist.org/mcp" } } }
Cursor
{ "fastlist": { "command": "npx", "args": ["mcp-remote", "https://fastlist.org/mcp"] } }
Windsurf
{ "servers": [ { "name": "FastList", "endpoint": "https://fastlist.org/mcp" } ] }
Zed
{ "mcp": { "servers": [ "https://fastlist.org/mcp" ] } }
HTTP
POST https://fastlist.org/mcp Content-Type: application/json { "action": "get_posts" }
TypeScript
import { McpClient } from "@modelcontextprotocol/typescript-sdk"; const client = new McpClient("https://fastlist.org/mcp"); // Use client to interact with FastList MCP API