<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: curatedmcp</title>
    <description>The latest articles on DEV Community by curatedmcp (@sam_curatedmcp).</description>
    <link>https://dev.to/sam_curatedmcp</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3873835%2F034ea75d-2b0d-43f2-b352-778777c2e837.png</url>
      <title>DEV Community: curatedmcp</title>
      <link>https://dev.to/sam_curatedmcp</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sam_curatedmcp"/>
    <language>en</language>
    <item>
      <title>Playwright MCP: Cross-browser automation that actually works in production</title>
      <dc:creator>curatedmcp</dc:creator>
      <pubDate>Sun, 31 May 2026 10:38:33 +0000</pubDate>
      <link>https://dev.to/curatedmcp/playwright-mcp-cross-browser-automation-that-actually-works-in-production-igf</link>
      <guid>https://dev.to/curatedmcp/playwright-mcp-cross-browser-automation-that-actually-works-in-production-igf</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;Install guide and config at &lt;a href="https://curatedmcp.com/install/playwright-mcp/claude-desktop" rel="noopener noreferrer"&gt;curatedmcp.com&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h1&gt;
  
  
  Playwright MCP: Cross-browser automation that actually works in production
&lt;/h1&gt;

&lt;p&gt;Browser automation is harder than it looks. You need Chromium for most sites, Firefox for edge cases, and Safari if you care about macOS users. You need screenshots for debugging, reliable waits instead of sleepy &lt;code&gt;setTimeout()&lt;/code&gt; calls, and the ability to mock network requests without spinning up a proxy server.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/microsoft/playwright-mcp" rel="noopener noreferrer"&gt;Playwright MCP&lt;/a&gt; is the official Microsoft integration that gives Claude, Cursor, and Windsurf full control over Chromium, Firefox, and WebKit browsers. It's what you'd reach for when Puppeteer feels limiting or when you need to test against multiple rendering engines without writing boilerplate.&lt;/p&gt;

&lt;h2&gt;
  
  
  What It Does
&lt;/h2&gt;

&lt;p&gt;Playwright MCP unlocks sophisticated browser control for AI agents. Click elements, type text, select dropdowns, drag items—all triggered by natural language prompts to Claude. Take screenshots instantly for visual debugging. Generate PDFs, intercept network requests, mock API responses, manage cookies and local storage, and emulate mobile devices.&lt;/p&gt;

&lt;p&gt;The real power: record user interactions and replay them, wait for specific network conditions or DOM states instead of guessing delays, and handle complex workflows like OAuth flows or multi-step form interactions that require real browser context.&lt;/p&gt;

&lt;p&gt;If you're already using Playwright for testing, this is the natural extension into AI-powered automation. If you need Firefox or Safari support that other tools skip, this is your answer.&lt;/p&gt;

&lt;h2&gt;
  
  
  How to Install
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx &lt;span class="nt"&gt;-y&lt;/span&gt; @playwright/mcp@latest
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then add to your &lt;code&gt;claude_desktop_config.json&lt;/code&gt;:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"mcpServers"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"playwright-mcp"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"command"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"npx -y @playwright/mcp@latest"&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Requires Node.js 18+. First run downloads browser binaries (~150MB).&lt;/p&gt;

&lt;h2&gt;
  
  
  Real-World Use Cases
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Cross-browser testing without the test file&lt;/strong&gt;: Ask Claude to visit your site on Chromium, Firefox, and WebKit, take screenshots of the same interaction on each, and flag visual regressions—all in one prompt.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;E2E workflow automation&lt;/strong&gt;: Build a multi-step flow (login → navigate → fill form → submit) by describing it to Cursor, which orchestrates Playwright to execute it while you handle the logic.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Web scraping with intelligence&lt;/strong&gt;: Scrape dynamic sites where content loads after interaction. Let Claude navigate, wait for network idle, intercept API calls to understand data structure, then extract what you need.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Full install guides for Claude Desktop, Cursor, Windsurf, and more at &lt;a href="https://curatedmcp.com/marketplace/playwright-mcp" rel="noopener noreferrer"&gt;CuratedMCP&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>mcp</category>
      <category>ai</category>
      <category>claude</category>
      <category>cursor</category>
    </item>
    <item>
      <title>Google Maps MCP: Turn Natural Language into Spatial Intelligence for AI Agents</title>
      <dc:creator>curatedmcp</dc:creator>
      <pubDate>Sat, 30 May 2026 10:37:04 +0000</pubDate>
      <link>https://dev.to/curatedmcp/google-maps-mcp-turn-natural-language-into-spatial-intelligence-for-ai-agents-3ibf</link>
      <guid>https://dev.to/curatedmcp/google-maps-mcp-turn-natural-language-into-spatial-intelligence-for-ai-agents-3ibf</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;Install guide and config at &lt;a href="https://curatedmcp.com/install/google-maps-mcp/claude-desktop" rel="noopener noreferrer"&gt;curatedmcp.com&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h1&gt;
  
  
  Google Maps MCP: Turn Natural Language into Spatial Intelligence for AI Agents
&lt;/h1&gt;

&lt;p&gt;Tired of building location features from scratch? Google Maps MCP connects Claude, Cursor, and other AI agents directly to the Google Maps Platform—letting them search for places, calculate routes, geocode addresses, and reason about distance all through natural language.&lt;/p&gt;

&lt;p&gt;Instead of parsing API responses yourself, you describe what you need ("Find Italian restaurants within 2 miles of this address") and the agent handles the API calls, interprets results, and feeds useful data back to your application. It's the difference between wiring up endpoints manually and giving your AI agent a geography sense.&lt;/p&gt;

&lt;h2&gt;
  
  
  What It Does
&lt;/h2&gt;

&lt;p&gt;Google Maps MCP unlocks five core capabilities:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Geocoding &amp;amp; Reverse Geocoding&lt;/strong&gt; — Convert addresses to coordinates and vice versa. Useful for normalizing user input or mapping database records to locations.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Place Search &amp;amp; Details&lt;/strong&gt; — Find businesses, landmarks, or points of interest by name, type, or proximity. Retrieve hours of operation, ratings, phone numbers, and photos without touching the Places API directly.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Directions &amp;amp; Routing&lt;/strong&gt; — Generate turn-by-turn navigation for driving, walking, transit, or cycling. The agent can reason about travel time and choose routes based on constraints (avoid tolls, prefer highways).&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Distance Matrix&lt;/strong&gt; — Calculate travel times and distances between multiple origins and destinations at once. Perfect for logistics, delivery optimization, or analyzing accessibility.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Elevation &amp;amp; Time Zone Data&lt;/strong&gt; — Get elevation for coordinates and determine time zones for any location.&lt;/p&gt;

&lt;p&gt;All of this works through your agent's natural language interface—no manual URL construction required.&lt;/p&gt;

&lt;h2&gt;
  
  
  How to Install
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx &lt;span class="nt"&gt;-y&lt;/span&gt; @modelcontextprotocol/server-google-maps
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Add to your Claude Desktop config (&lt;code&gt;~/Library/Application Support/Claude/claude_desktop_config.json&lt;/code&gt; on macOS):&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"mcpServers"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"google-maps-mcp"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"command"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"npx -y @modelcontextprotocol/server-google-maps"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"env"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
        &lt;/span&gt;&lt;span class="nl"&gt;"GOOGLE_MAPS_API_KEY"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"your-api-key-here"&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Get an API key from Google Cloud Console. The free tier gives you $200/month in credits—roughly 40,000 map operations.&lt;/p&gt;

&lt;h2&gt;
  
  
  Real-World Use Cases
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Location-aware customer support&lt;/strong&gt; — Agent retrieves store hours, directions, and contact info on demand. "What's the nearest service center?" triggers a real-time search and hands back address + hours without hardcoding anything.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Travel planning automation&lt;/strong&gt; — Build itinerary tools where the agent calculates drive times between destinations, suggests stops based on proximity, and avoids tolls. No manual coordinate work.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Logistics &amp;amp; delivery optimization&lt;/strong&gt; — Feed the agent a list of 10 delivery addresses and get back a distance matrix to optimize routes, estimate ETAs, and identify bottlenecks.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Full install guides for Claude Desktop, Cursor, Windsurf, and more at &lt;a href="https://curatedmcp.com/marketplace/google-maps-mcp" rel="noopener noreferrer"&gt;CuratedMCP&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>mcp</category>
      <category>ai</category>
      <category>claude</category>
      <category>cursor</category>
    </item>
    <item>
      <title>Fetch MCP Server: Give Your AI Agent Web Access in One Command</title>
      <dc:creator>curatedmcp</dc:creator>
      <pubDate>Fri, 29 May 2026 10:04:31 +0000</pubDate>
      <link>https://dev.to/curatedmcp/fetch-mcp-server-give-your-ai-agent-web-access-in-one-command-4hl4</link>
      <guid>https://dev.to/curatedmcp/fetch-mcp-server-give-your-ai-agent-web-access-in-one-command-4hl4</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;Install guide and config at &lt;a href="https://curatedmcp.com/install/fetch-mcp-server/claude-desktop" rel="noopener noreferrer"&gt;curatedmcp.com&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h1&gt;
  
  
  Fetch MCP Server: Give Your AI Agent Web Access in One Command
&lt;/h1&gt;

&lt;p&gt;The web is full of information, but your AI agent can't see it — not without help. The Fetch MCP Server solves that by letting Claude, Cursor, and Windsurf fetch any URL and read it as clean, AI-friendly markdown. No browser automation overhead. No complicated setup. Just point it at a URL and get readable content back.&lt;/p&gt;

&lt;h2&gt;
  
  
  What It Does
&lt;/h2&gt;

&lt;p&gt;Fetch MCP is the essential bridge between your AI agent and the live web. Feed it any HTTP or HTTPS URL, and it returns the content as structured markdown — preserving links, code blocks, and formatting. The server automatically converts HTML to readable text, respects &lt;code&gt;robots.txt&lt;/code&gt;, and can even handle JavaScript-heavy pages via optional Playwright integration if you need it.&lt;/p&gt;

&lt;p&gt;This unlocks real capabilities: your AI can now read documentation pages, fetch articles from search results, pull down API specs, or retrieve content from any public web page. It's simpler and lighter than full browser automation tools for read-only tasks, which makes it perfect for the most common use case — your agent just needs to &lt;em&gt;read&lt;/em&gt; something.&lt;/p&gt;

&lt;h2&gt;
  
  
  How to Install
&lt;/h2&gt;

&lt;p&gt;Install via &lt;code&gt;uvx&lt;/code&gt; (requires Python 3.10+ and the &lt;code&gt;uv&lt;/code&gt; package manager):&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;uvx mcp-server-fetch
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then configure it in Claude Desktop by adding this to your &lt;code&gt;claude_desktop_config.json&lt;/code&gt;:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"mcpServers"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"fetch-mcp-server"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"command"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"uvx mcp-server-fetch"&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Restart Claude Desktop, and you're ready to go.&lt;/p&gt;

&lt;h2&gt;
  
  
  Real-World Use Cases
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Documentation lookup&lt;/strong&gt;: Ask Claude to fetch the latest docs from your framework's website, then ask questions about a specific API. No manual copying and pasting.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Research and summarization&lt;/strong&gt;: Drop a news article or blog post URL into Cursor, have Claude summarize it or extract specific information while you're coding.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;API spec review&lt;/strong&gt;: Fetch OpenAPI specs or documentation pages directly from a service's website, then ask your AI to generate client code or explain endpoints.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Full install guides for Claude Desktop, Cursor, Windsurf, and more at &lt;a href="https://curatedmcp.com/marketplace/fetch-mcp-server" rel="noopener noreferrer"&gt;CuratedMCP&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>mcp</category>
      <category>ai</category>
      <category>claude</category>
      <category>cursor</category>
    </item>
    <item>
      <title>Memory MCP Server: Give Claude a Brain That Remembers Across Conversations</title>
      <dc:creator>curatedmcp</dc:creator>
      <pubDate>Thu, 28 May 2026 10:04:32 +0000</pubDate>
      <link>https://dev.to/curatedmcp/memory-mcp-server-give-claude-a-brain-that-remembers-across-conversations-2165</link>
      <guid>https://dev.to/curatedmcp/memory-mcp-server-give-claude-a-brain-that-remembers-across-conversations-2165</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;Install guide and config at &lt;a href="https://curatedmcp.com/install/memory-mcp-server/claude-desktop" rel="noopener noreferrer"&gt;curatedmcp.com&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h1&gt;
  
  
  Memory MCP Server: Give Claude a Brain That Remembers Across Conversations
&lt;/h1&gt;

&lt;p&gt;The problem: Claude starts fresh every conversation. Want your AI agent to remember that your API keys live in a specific vault, or that Alice leads the payments team, or that your prod database is on AWS us-east-1? You had to paste that context in every single time.&lt;/p&gt;

&lt;p&gt;Memory MCP Server solves this by giving Claude a persistent knowledge graph that survives session restarts. Store entities, relationships, and observations locally—your AI agent reads and updates them just like you'd expect.&lt;/p&gt;

&lt;h2&gt;
  
  
  What It Does
&lt;/h2&gt;

&lt;p&gt;Memory MCP Server creates a local knowledge graph that Claude can query and modify using natural language. You can store named entities (people, projects, services, concepts) with properties, define relationships between them, and attach notes and observations.&lt;/p&gt;

&lt;p&gt;Instead of manually re-explaining your system architecture or team structure in every chat, Claude retrieves what it already knows. The server handles persistence transparently—close your session, reopen it tomorrow, and the memory is intact. Since everything stays local, your data never leaves your machine.&lt;/p&gt;

&lt;p&gt;This unlocks continuity in agent workflows. Multi-turn projects become genuinely stateful. Cursor or Claude can maintain context about your codebase, deployment configs, team decisions, and project history without you being a copy-paste machine.&lt;/p&gt;

&lt;h2&gt;
  
  
  How to Install
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx &lt;span class="nt"&gt;-y&lt;/span&gt; @modelcontextprotocol/server-memory
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then add to your Claude Desktop config:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"mcpServers"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"memory-mcp-server"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"command"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"npx -y @modelcontextprotocol/server-memory"&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Restart Claude Desktop and the server activates automatically.&lt;/p&gt;

&lt;h2&gt;
  
  
  Real-World Use Cases
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;System architecture reference&lt;/strong&gt;: Store your deployment topology, service URLs, and infrastructure decisions once. Claude recalls them in future conversations without you having to re-explain.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Team and project context&lt;/strong&gt;: "Note that Alice leads payments, Bob owns infrastructure." Claude remembers the org structure and makes better recommendations aligned with who owns what.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Development workflows&lt;/strong&gt;: Store API keys, environment variables, and local config once in the knowledge graph. Claude retrieves them contextually across sessions instead of you managing secrets manually.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;Full install guides for Claude Desktop, Cursor, Windsurf, and more at &lt;a href="https://curatedmcp.com/marketplace/memory-mcp-server" rel="noopener noreferrer"&gt;CuratedMCP&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>mcp</category>
      <category>ai</category>
      <category>claude</category>
      <category>cursor</category>
    </item>
    <item>
      <title>Slack MCP Server: Keep Your AI Agent in the Loop With Live Workspace Access</title>
      <dc:creator>curatedmcp</dc:creator>
      <pubDate>Wed, 27 May 2026 10:04:31 +0000</pubDate>
      <link>https://dev.to/curatedmcp/slack-mcp-server-keep-your-ai-agent-in-the-loop-with-live-workspace-access-3751</link>
      <guid>https://dev.to/curatedmcp/slack-mcp-server-keep-your-ai-agent-in-the-loop-with-live-workspace-access-3751</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;Install guide and config at &lt;a href="https://curatedmcp.com/install/slack-mcp-server/claude-desktop" rel="noopener noreferrer"&gt;curatedmcp.com&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h1&gt;
  
  
  Slack MCP Server: Keep Your AI Agent in the Loop With Live Workspace Access
&lt;/h1&gt;

&lt;p&gt;Slack is where your team lives. Decisions happen in threads, context gets buried in channels, and important updates scroll past. What if your AI agent could read, search, and post to Slack just like a team member?&lt;/p&gt;

&lt;p&gt;The Slack MCP Server does exactly that. It's a verified MCP integration that connects Claude, Cursor, or Windsurf directly to your Slack workspace—giving your agent real-time access to conversations, the ability to pull context from message history, and permission to post updates back to channels or DMs.&lt;/p&gt;

&lt;h2&gt;
  
  
  What It Does
&lt;/h2&gt;

&lt;p&gt;This server unlocks five core capabilities:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Read conversations&lt;/strong&gt;: Access channel history, thread replies, and full message context without leaving your IDE&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Search at scale&lt;/strong&gt;: Query across your entire workspace to find relevant discussions, decisions, or past implementations&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Post and reply&lt;/strong&gt;: Have your agent send messages to channels, reply to threads, or DM team members with summaries or alerts&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;List workspace metadata&lt;/strong&gt;: Fetch channels, members, and team info to understand org structure&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Handle attachments&lt;/strong&gt;: Retrieve files and shared content from messages&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Rate limiting and pagination are handled automatically, so you don't have to think about API constraints.&lt;/p&gt;

&lt;p&gt;With 1,500+ GitHub stars and active maintenance, this is the go-to Slack integration for engineering teams who want their AI agent to actually stay in sync with what's happening in real time.&lt;/p&gt;

&lt;h2&gt;
  
  
  How to Install
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx &lt;span class="nt"&gt;-y&lt;/span&gt; @korotovsky/slack-mcp-server
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Add it to your Claude Desktop config:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"mcpServers"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"slack-mcp-server"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"command"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"npx -y @korotovsky/slack-mcp-server"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"env"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
        &lt;/span&gt;&lt;span class="nl"&gt;"SLACK_BOT_TOKEN"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"xoxb-your-token-here"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
        &lt;/span&gt;&lt;span class="nl"&gt;"SLACK_TEAM_ID"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"T0123456789"&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You'll need a Slack Bot Token with scopes for &lt;code&gt;channels:history&lt;/code&gt;, &lt;code&gt;channels:read&lt;/code&gt;, &lt;code&gt;chat:write&lt;/code&gt;, and &lt;code&gt;users:read&lt;/code&gt;. &lt;a href="https://github.com/korotovsky/slack-mcp-server#readme" rel="noopener noreferrer"&gt;Full docs here.&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Real-World Use Cases
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Summarize a heated thread&lt;/strong&gt;: Ask Claude to read a 50-message thread, extract the decision, and post a tl;dr back to the channel&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Find past implementations&lt;/strong&gt;: Search your workspace for how your team solved a similar problem six months ago without alt-tabbing to Slack&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Automated standup updates&lt;/strong&gt;: Have your agent pull recent activity from #engineering and draft a daily summary your manager can review&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Full install guides for Claude Desktop, Cursor, Windsurf, and more at &lt;a href="https://curatedmcp.com/marketplace/slack-mcp-server" rel="noopener noreferrer"&gt;CuratedMCP&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>mcp</category>
      <category>ai</category>
      <category>claude</category>
      <category>cursor</category>
    </item>
    <item>
      <title>Puppeteer MCP Server: Automate Browser Tasks Directly from Your AI Agent</title>
      <dc:creator>curatedmcp</dc:creator>
      <pubDate>Tue, 26 May 2026 10:04:30 +0000</pubDate>
      <link>https://dev.to/curatedmcp/puppeteer-mcp-server-automate-browser-tasks-directly-from-your-ai-agent-35ho</link>
      <guid>https://dev.to/curatedmcp/puppeteer-mcp-server-automate-browser-tasks-directly-from-your-ai-agent-35ho</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;Install guide and config at &lt;a href="https://curatedmcp.com/install/puppeteer-mcp-server/claude-desktop" rel="noopener noreferrer"&gt;curatedmcp.com&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h1&gt;
  
  
  Puppeteer MCP Server: Automate Browser Tasks Directly from Your AI Agent
&lt;/h1&gt;

&lt;h2&gt;
  
  
  What It Does
&lt;/h2&gt;

&lt;p&gt;Puppeteer MCP connects your AI agent to a real browser instance, giving Claude, Cursor, or Windsurf the ability to take screenshots, scrape JavaScript-rendered content, fill forms, and interact with web UIs — all programmatically.&lt;/p&gt;

&lt;p&gt;Most web scraping tools fail on modern websites that load content via JavaScript. Puppeteer MCP solves this by spinning up a headless Chromium browser controlled by your AI agent. You get full automation capabilities: navigate pages, click elements, extract data from dynamic content, evaluate custom JavaScript, manage cookies, and handle authentication flows.&lt;/p&gt;

&lt;p&gt;The practical upside? Your AI agent can now complete tasks that require actual browser interaction — not just HTTP requests. That means scraping single-page apps, testing web interfaces, monitoring pages that render on load, and automating workflows that involve real user interactions.&lt;/p&gt;

&lt;p&gt;It's free, runs locally (no external APIs), and works headlessly, so you don't need a display. Just Node.js 18+ and Chromium running in the background.&lt;/p&gt;

&lt;h2&gt;
  
  
  How to Install
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx &lt;span class="nt"&gt;-y&lt;/span&gt; @modelcontextprotocol/server-puppeteer
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then add it to your Claude Desktop config (&lt;code&gt;claude_desktop_config.json&lt;/code&gt;):&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"mcpServers"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"puppeteer-mcp-server"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"command"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"npx -y @modelcontextprotocol/server-puppeteer"&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Restart Claude Desktop, and Puppeteer tools will be available in your next conversation.&lt;/p&gt;

&lt;h2&gt;
  
  
  Real-World Use Cases
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Extract data from React/Vue/Angular apps&lt;/strong&gt;: Scrape product listings, job boards, or news sites that render content client-side. Ask Claude to navigate, wait for content to load, then extract structured data — no parsing brittle JavaScript required.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Screenshot-based monitoring&lt;/strong&gt;: Monitor competitor websites, take full-page screenshots of dashboards, or generate visual reports. Perfect for tracking design changes or building proof-of-concept automation without manual screenshots.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Form automation and testing&lt;/strong&gt;: Test web forms by having Claude fill inputs, select dropdowns, upload files, and submit — then verify the result with screenshots. Useful for QA workflows or integration testing.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;Full install guides for Claude Desktop, Cursor, Windsurf, and more at &lt;a href="https://curatedmcp.com/marketplace/puppeteer-mcp-server" rel="noopener noreferrer"&gt;CuratedMCP&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>mcp</category>
      <category>ai</category>
      <category>claude</category>
      <category>cursor</category>
    </item>
    <item>
      <title>MCP Ecosystem Week 22: The Quiet Week That Shows Market Maturity</title>
      <dc:creator>curatedmcp</dc:creator>
      <pubDate>Mon, 25 May 2026 10:04:39 +0000</pubDate>
      <link>https://dev.to/curatedmcp/mcp-ecosystem-week-22-the-quiet-week-that-shows-market-maturity-3ffl</link>
      <guid>https://dev.to/curatedmcp/mcp-ecosystem-week-22-the-quiet-week-that-shows-market-maturity-3ffl</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;Originally published at &lt;a href="https://curatedmcp.com/blog/week-2026-22" rel="noopener noreferrer"&gt;curatedmcp.com/blog/week-2026-22&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h1&gt;
  
  
  MCP Ecosystem Week 22: The Quiet Week That Shows Market Maturity
&lt;/h1&gt;

&lt;p&gt;Week 22 brought no new server additions to CuratedMCP's catalog, marking a notable pause in the constant stream of launches we've seen over recent months. But here's what's interesting: the ecosystem didn't stall. Instead, usage patterns shifted decisively toward the heavyweight integrations—the ones that solve real problems at scale.&lt;/p&gt;

&lt;p&gt;With 70 verified servers now live, we're entering a phase where quality and integration depth matter more than raw quantity. This week's data reflects that consolidation clearly.&lt;/p&gt;

&lt;h2&gt;
  
  
  This Week in MCP
&lt;/h2&gt;

&lt;p&gt;No new servers launched this week. While that might seem like a slowdown, it's actually indicative of a maturing marketplace. We're seeing builders focus on deepening existing integrations rather than chasing novelty. The 69 free servers in our catalog continue to handle the vast majority of use cases, and the week's traffic patterns confirm developers are finding what they need.&lt;/p&gt;

&lt;p&gt;The pause also gives developers breathing room—time to actually integrate these tools into production workflows rather than constantly evaluating new options. That's a healthy sign.&lt;/p&gt;

&lt;h2&gt;
  
  
  Trending Servers
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;GitHub Copilot MCP&lt;/strong&gt; dominated this week with 98,006 views, cementing its position as the go-to for developers who want AI code intelligence directly in their MCP client. The appeal is straightforward: completions, explanations, and automated review without leaving your context.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;OpenAI MCP&lt;/strong&gt; (87,001 views) maintained strong momentum as the primary gateway to GPT-4o, DALL-E, Whisper, and embeddings. It's the bridge tool for developers already invested in OpenAI's ecosystem who want that capability accessible across multiple AI clients.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Figma MCP&lt;/strong&gt; (82,003 views) continues to climb, now the third most-viewed server. Design-to-code workflows are increasingly central to modern development, and direct access to design files, components, and tokens from an AI agent removes a significant friction point. This one's particularly revealing—it shows MCP adoption extending beyond pure backend/API work into product design acceleration.&lt;/p&gt;

&lt;p&gt;The top 5 is rounded out by &lt;strong&gt;GitHub MCP&lt;/strong&gt; and &lt;strong&gt;Anthropic Claude MCP&lt;/strong&gt;, both holding steady in the 76k view range. GitHub's integration remains essential for any agent-driven development workflow, while Claude-nesting is finding its niche with teams building complex reasoning pipelines.&lt;/p&gt;

&lt;h2&gt;
  
  
  Quick Take
&lt;/h2&gt;

&lt;p&gt;All top 5 trending servers are free, and that pattern holds across the entire catalog: 69 out of 70 verified servers cost nothing. We're watching the emergence of a completely different monetization model than typical SaaS. The value isn't captured through server licensing—it's captured through the clients that &lt;em&gt;consume&lt;/em&gt; these servers, and the data flows they enable.&lt;/p&gt;

&lt;p&gt;For independent developers and small teams, this is remarkable. For potential server creators, it suggests the opportunity isn't in the tool itself, but in becoming &lt;em&gt;essential infrastructure&lt;/em&gt; that's so widely adopted that exclusivity or premium tiers become viable later.&lt;/p&gt;

&lt;p&gt;The consolidation around top integrations also hints at what's coming next: deeper, more specialized servers that solve vertical problems rather than horizontal integrations. Watch for domain-specific MCPs as the next growth area.&lt;/p&gt;

&lt;p&gt;Browse all 70 verified servers at &lt;a href="https://curatedmcp.com/marketplace" rel="noopener noreferrer"&gt;CuratedMCP&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>mcp</category>
      <category>ai</category>
      <category>claude</category>
      <category>webdev</category>
    </item>
    <item>
      <title>SQLite MCP Server: Query Local Databases with Natural Language</title>
      <dc:creator>curatedmcp</dc:creator>
      <pubDate>Mon, 25 May 2026 10:04:31 +0000</pubDate>
      <link>https://dev.to/curatedmcp/sqlite-mcp-server-query-local-databases-with-natural-language-4kfo</link>
      <guid>https://dev.to/curatedmcp/sqlite-mcp-server-query-local-databases-with-natural-language-4kfo</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;Install guide and config at &lt;a href="https://curatedmcp.com/install/sqlite-mcp-server/claude-desktop" rel="noopener noreferrer"&gt;curatedmcp.com&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h1&gt;
  
  
  SQLite MCP Server: Query Local Databases with Natural Language
&lt;/h1&gt;

&lt;p&gt;Stop writing boilerplate SQL. The SQLite MCP Server connects your AI agent directly to local SQLite databases, letting you ask questions in plain English and get instant results—no API keys, no cloud services, no friction.&lt;/p&gt;

&lt;h2&gt;
  
  
  What It Does
&lt;/h2&gt;

&lt;p&gt;This MCP server gives Claude, Cursor, and Windsurf full read/write access to SQLite databases running on your machine. Your AI agent can now:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Query databases conversationally.&lt;/strong&gt; Ask "Show me sales by region last quarter" and get back structured results.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Inspect schemas automatically.&lt;/strong&gt; The agent explores table structures, relationships, and data types without you explaining your database.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Run aggregations and analysis.&lt;/strong&gt; Generate summaries, spot trends, and extract business insights directly from your data.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Store persistent memos.&lt;/strong&gt; Built-in note storage lets your agent remember findings across sessions.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Because everything runs locally, there's no latency waiting for cloud roundtrips, no credentials to rotate, and no data leaving your machine. Perfect for local development, rapid prototyping, and offline-capable workflows.&lt;/p&gt;

&lt;h2&gt;
  
  
  How to Install
&lt;/h2&gt;

&lt;p&gt;Install via &lt;code&gt;uv&lt;/code&gt;, the fast Python package manager:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;uvx mcp-server-sqlite &lt;span class="nt"&gt;--db-path&lt;/span&gt; /path/to/database.sqlite
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then configure for Claude Desktop by adding this to &lt;code&gt;claude_desktop_config.json&lt;/code&gt;:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"mcpServers"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"sqlite-mcp-server"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"command"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"uvx mcp-server-sqlite --db-path /path/to/database.sqlite"&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Replace &lt;code&gt;/path/to/database.sqlite&lt;/code&gt; with your actual database file path. Restart Claude, and you're connected.&lt;/p&gt;

&lt;h2&gt;
  
  
  Real-World Use Cases
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Local analytics dashboard.&lt;/strong&gt; Ask your AI agent to analyze product metrics, customer churn, or inventory levels stored in a local SQLite file without touching production databases.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Database-driven prototyping.&lt;/strong&gt; Build and iterate on schemas while having Claude suggest optimizations, write migrations, or spot data inconsistencies.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Offline research workflows.&lt;/strong&gt; Download datasets into SQLite, then use your agent to explore, filter, and summarize—perfect for trains, flights, or air-gapped environments.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Full install guides for Claude Desktop, Cursor, Windsurf, and more at &lt;a href="https://curatedmcp.com/marketplace/sqlite-mcp-server" rel="noopener noreferrer"&gt;CuratedMCP&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>mcp</category>
      <category>ai</category>
      <category>claude</category>
      <category>cursor</category>
    </item>
    <item>
      <title>Brave Search MCP: Give Your AI Agent Real-Time Web Access Without Google's Baggage</title>
      <dc:creator>curatedmcp</dc:creator>
      <pubDate>Sun, 24 May 2026 10:04:31 +0000</pubDate>
      <link>https://dev.to/curatedmcp/brave-search-mcp-give-your-ai-agent-real-time-web-access-without-googles-baggage-40c9</link>
      <guid>https://dev.to/curatedmcp/brave-search-mcp-give-your-ai-agent-real-time-web-access-without-googles-baggage-40c9</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;Install guide and config at &lt;a href="https://curatedmcp.com/install/brave-search-mcp/claude-desktop" rel="noopener noreferrer"&gt;curatedmcp.com&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h1&gt;
  
  
  Brave Search MCP: Give Your AI Agent Real-Time Web Access Without Google's Baggage
&lt;/h1&gt;

&lt;p&gt;Search integrations are table stakes for AI agents. But most tie you to Google's API, tracking, or rate limits. Brave Search MCP cuts that dependency—it's a free, privacy-focused search tool that plugs your Claude or Cursor instance directly into real-time web results, news, and local business data.&lt;/p&gt;

&lt;h2&gt;
  
  
  What It Does
&lt;/h2&gt;

&lt;p&gt;Brave Search MCP unlocks web access for your AI agents without the corporate overhead. Instead of hallucinating outdated information, Claude can now fetch live search results, parse news articles by recency, and pull location-based business data from maps. You get up to 20 results per query, rich snippets, and safe search controls—all without Brave tracking your agent's searches or injecting ads into the results.&lt;/p&gt;

&lt;p&gt;This is useful because it solves a real problem: most AI agents are blindfolded to anything past their training cutoff. With this server, your agent becomes aware of &lt;em&gt;now&lt;/em&gt;—current events, recent documentation changes, live product pricing, competitor news. The API is genuinely free (2,000 queries/month), so you can experiment without hitting a paywall immediately.&lt;/p&gt;

&lt;p&gt;It works with Claude Desktop, Cursor, Windsurf, or any MCP-compatible client. The ecosystem is widely adopting it because it's the obvious alternative to relying on a single search monopoly.&lt;/p&gt;

&lt;h2&gt;
  
  
  How to Install
&lt;/h2&gt;

&lt;p&gt;Get a free API key at &lt;a href="https://api.search.brave.com" rel="noopener noreferrer"&gt;api.search.brave.com&lt;/a&gt;, then run:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx &lt;span class="nt"&gt;-y&lt;/span&gt; @modelcontextprotocol/server-brave-search
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Add to your Claude Desktop config:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"mcpServers"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"brave-search-mcp"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"command"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"npx -y @modelcontextprotocol/server-brave-search"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"env"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
        &lt;/span&gt;&lt;span class="nl"&gt;"BRAVE_SEARCH_API_KEY"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"your_api_key_here"&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Restart Claude Desktop, and search is now available in your context.&lt;/p&gt;

&lt;h2&gt;
  
  
  Real-World Use Cases
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Research and reporting&lt;/strong&gt;: Ask Claude to find recent news on a topic, fetch snippets from multiple sources, and synthesize them into a briefing without hallucinating publication dates or outlets.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Documentation hunting&lt;/strong&gt;: Cursor can search for current API docs, Stack Overflow answers, or GitHub issues related to your error, then paste relevant code examples directly into your editor.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Competitor intelligence&lt;/strong&gt;: Trigger news search to monitor recent announcements, pricing changes, or product launches from rivals without manually scanning feeds.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Full install guides for Claude Desktop, Cursor, Windsurf, and more at &lt;a href="https://curatedmcp.com/marketplace/brave-search-mcp" rel="noopener noreferrer"&gt;CuratedMCP&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>mcp</category>
      <category>ai</category>
      <category>claude</category>
      <category>cursor</category>
    </item>
    <item>
      <title>Slack Connector: Give Your AI Agent Direct Access to Your Team's Slack Workspace</title>
      <dc:creator>curatedmcp</dc:creator>
      <pubDate>Sat, 23 May 2026 10:04:31 +0000</pubDate>
      <link>https://dev.to/curatedmcp/slack-connector-give-your-ai-agent-direct-access-to-your-teams-slack-workspace-4ja8</link>
      <guid>https://dev.to/curatedmcp/slack-connector-give-your-ai-agent-direct-access-to-your-teams-slack-workspace-4ja8</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;Install guide and config at &lt;a href="https://curatedmcp.com/install/slack-connector/claude-desktop" rel="noopener noreferrer"&gt;curatedmcp.com&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h1&gt;
  
  
  Slack Connector: Give Your AI Agent Direct Access to Your Team's Slack Workspace
&lt;/h1&gt;

&lt;p&gt;Slack Connector is an MCP server that bridges your AI agents directly to Slack's API, letting Claude, Cursor, or Windsurf read conversations, send messages, manage channels, and react to threads—all programmatically. Instead of copy-pasting Slack messages into your AI tool, your agent can fetch context on demand, post updates, and automate team communication workflows without leaving your development environment.&lt;/p&gt;

&lt;h2&gt;
  
  
  What It Does
&lt;/h2&gt;

&lt;p&gt;This server unlocks full read-write access to Slack for your AI agent. You can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Read conversation history&lt;/strong&gt; with full threading support to give your agent context about what your team discussed&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Send messages and DMs&lt;/strong&gt; to channels or individuals, letting your agent communicate findings or alerts&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Manage channels&lt;/strong&gt; by adding/removing members programmatically&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;React with emoji&lt;/strong&gt; to messages—useful for acknowledgments or workflow automation&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Upload files&lt;/strong&gt; directly to Slack from your agent's output&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Respond to slash commands&lt;/strong&gt; so Slack interactions can trigger agent workflows&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The core value: your AI agent becomes a first-class member of your Slack workspace, able to participate in async team communication and pull real-time context when needed.&lt;/p&gt;

&lt;h2&gt;
  
  
  How to Install
&lt;/h2&gt;

&lt;p&gt;Head to the &lt;a href="https://curatedmcp.com/marketplace/slack-connector" rel="noopener noreferrer"&gt;CuratedMCP marketplace&lt;/a&gt; for the exact install command for your platform.&lt;/p&gt;

&lt;p&gt;For Claude Desktop, add this to your &lt;code&gt;claude_desktop_config.json&lt;/code&gt;:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"mcpServers"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"slack-connector"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"command"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"npx @curatedmcp/slack-connector"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"env"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
        &lt;/span&gt;&lt;span class="nl"&gt;"SLACK_BOT_TOKEN"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"xoxb-your-token-here"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
        &lt;/span&gt;&lt;span class="nl"&gt;"SLACK_APP_TOKEN"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"xapp-your-token-here"&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Generate tokens from your &lt;a href="https://api.slack.com/apps" rel="noopener noreferrer"&gt;Slack app settings&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Real-World Use Cases
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Automated incident summaries&lt;/strong&gt;: When you mention a bug in a channel, have your agent fetch the full thread, analyze it, and post a structured summary with next steps.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Code review notifications&lt;/strong&gt;: Have Claude watch a Slack channel for PR links, fetch repo context, then post inline feedback or blockers directly to the thread.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Team standup automation&lt;/strong&gt;: Schedule your agent to gather updates from specific channels, compile them into a daily digest, and post to #standup without manual effort.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Full install guides for Claude Desktop, Cursor, Windsurf, and more at &lt;a href="https://curatedmcp.com/marketplace/slack-connector" rel="noopener noreferrer"&gt;CuratedMCP&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>mcp</category>
      <category>ai</category>
      <category>claude</category>
      <category>cursor</category>
    </item>
    <item>
      <title>Web Scraper Pro: Turn Any Website into Structured Data Your AI Can Reason Over</title>
      <dc:creator>curatedmcp</dc:creator>
      <pubDate>Fri, 22 May 2026 10:04:32 +0000</pubDate>
      <link>https://dev.to/curatedmcp/web-scraper-pro-turn-any-website-into-structured-data-your-ai-can-reason-over-3a1p</link>
      <guid>https://dev.to/curatedmcp/web-scraper-pro-turn-any-website-into-structured-data-your-ai-can-reason-over-3a1p</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;Install guide and config at &lt;a href="https://curatedmcp.com/install/web-scraper-pro/claude-desktop" rel="noopener noreferrer"&gt;curatedmcp.com&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h1&gt;
  
  
  Web Scraper Pro: Turn Any Website into Structured Data Your AI Can Reason Over
&lt;/h1&gt;

&lt;p&gt;Web scraping at scale is painful. Most APIs don't exist, static HTML parsers break on JavaScript-heavy sites, and anti-bot measures slow you down. &lt;strong&gt;Web Scraper Pro&lt;/strong&gt; is an MCP server that handles all of it—letting your AI agents extract clean, structured data from any website without the engineering overhead.&lt;/p&gt;

&lt;p&gt;It renders pages with Playwright, so dynamic content loads properly. It parses tables and lists automatically. It handles cookies, retries failed requests, and can grab screenshots when you need visual proof. The output? JSON your AI can actually reason over—no messy HTML strings.&lt;/p&gt;

&lt;h2&gt;
  
  
  What It Does
&lt;/h2&gt;

&lt;p&gt;Web Scraper Pro plugs into Claude, Cursor, or Windsurf and gives your AI agent a &lt;strong&gt;structured web scraping capability&lt;/strong&gt;. Instead of asking your agent to parse raw HTML (which it's bad at), you ask it to fetch and extract data from a URL. The server handles rendering, parsing, and cleanup. You get back clean tables, lists, and metadata.&lt;/p&gt;

&lt;p&gt;This unlocks real use cases: competitive pricing monitoring, job board aggregation, content research at scale, real estate listing analysis, or any scenario where you need to feed your AI fresh, structured web data. It handles JavaScript-rendered sites (news feeds, SPAs), so you're not limited to static pages.&lt;/p&gt;

&lt;p&gt;Rate limiting and retry logic mean you won't get blocked or timeout. Session management lets you scrape authenticated content. PDF parsing extends your reach beyond HTML.&lt;/p&gt;

&lt;h2&gt;
  
  
  How to Install
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;See the marketplace for your preferred installation method
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;For Claude Desktop, add this to your config:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"mcpServers"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"web-scraper-pro"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"command"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"npx @curatedmcp/web-scraper-pro"&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;After installing, ask Claude: &lt;em&gt;"Scrape this URL and extract all product prices as a CSV"&lt;/em&gt; or &lt;em&gt;"Get the table data from this page."&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Real-World Use Cases
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Market Research&lt;/strong&gt;: Feed Claude competitor pricing pages daily. It scrapes, normalizes, and alerts you to undercuts—all in one workflow.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Recruitment Automation&lt;/strong&gt;: Scrape job boards for specific roles and keywords, then have Claude summarize and filter candidates in real time.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Content Aggregation&lt;/strong&gt;: Pull news, blog posts, or product launches from multiple sites, extract key fields (title, author, link, date), and feed directly into your AI for summarization or classification.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Full install guides for Claude Desktop, Cursor, Windsurf, and more at &lt;a href="https://curatedmcp.com/marketplace/web-scraper-pro" rel="noopener noreferrer"&gt;CuratedMCP&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>mcp</category>
      <category>ai</category>
      <category>claude</category>
      <category>cursor</category>
    </item>
    <item>
      <title>PostgreSQL MCP: Let Claude query your databases in plain English</title>
      <dc:creator>curatedmcp</dc:creator>
      <pubDate>Thu, 21 May 2026 10:04:31 +0000</pubDate>
      <link>https://dev.to/curatedmcp/postgresql-mcp-let-claude-query-your-databases-in-plain-english-1f46</link>
      <guid>https://dev.to/curatedmcp/postgresql-mcp-let-claude-query-your-databases-in-plain-english-1f46</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;Install guide and config at &lt;a href="https://curatedmcp.com/install/postgresql-mcp/claude-desktop" rel="noopener noreferrer"&gt;curatedmcp.com&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h1&gt;
  
  
  PostgreSQL MCP: Let Claude query your databases in plain English
&lt;/h1&gt;

&lt;p&gt;Tired of context-switching between your IDE and database tools? PostgreSQL MCP brings your Postgres database directly into Claude, Cursor, or Windsurf—letting you write natural language queries that get translated to SQL automatically.&lt;/p&gt;

&lt;h2&gt;
  
  
  What It Does
&lt;/h2&gt;

&lt;p&gt;PostgreSQL MCP bridges the gap between AI agents and your Postgres databases. Instead of manually writing SQL, you describe what you need in plain English. The server translates it to SQL, executes it safely, and returns formatted results—all within your AI conversation.&lt;/p&gt;

&lt;p&gt;The server handles schema introspection automatically, so Claude understands your table structure without you manually documenting it. Want to explore a database? Ask Claude. Need analytics queries? Describe the analysis. Building a report? Let Claude write the queries.&lt;/p&gt;

&lt;p&gt;Key safety features matter in production: read-only mode prevents accidental mutations, connection pooling with PgBouncer support handles concurrency, and sandboxed execution keeps queries isolated. Query history and EXPLAIN plans help you optimize slow queries without leaving your chat window.&lt;/p&gt;

&lt;h2&gt;
  
  
  How to Install
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx @modelcontextprotocol/server-postgres
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Add this to your Claude Desktop config (&lt;code&gt;~/Library/Application\ Support/Claude/claude_desktop_config.json&lt;/code&gt; on Mac):&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"mcpServers"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"postgresql-mcp"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"command"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"npx @modelcontextprotocol/server-postgres"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"env"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
        &lt;/span&gt;&lt;span class="nl"&gt;"DATABASE_URL"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"postgresql://user:password@localhost:5432/dbname"&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Restart Claude Desktop, and you're live.&lt;/p&gt;

&lt;h2&gt;
  
  
  Real-World Use Cases
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Debug production data issues&lt;/strong&gt;: "Find all failed transactions from yesterday and show me the error patterns." Claude writes the query, you get instant insights.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Generate reports inside Cursor&lt;/strong&gt;: Chat with your codebase and database simultaneously. "Show me monthly revenue trends and help me write the SQL for our analytics dashboard."&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Explore unfamiliar schemas&lt;/strong&gt;: Onboarding to a legacy system? Let Claude navigate the database structure, show relationships, and help you understand what data actually exists.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Full install guides for Claude Desktop, Cursor, Windsurf, and more at &lt;a href="https://curatedmcp.com/marketplace/postgresql-mcp" rel="noopener noreferrer"&gt;CuratedMCP&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>mcp</category>
      <category>ai</category>
      <category>claude</category>
      <category>cursor</category>
    </item>
  </channel>
</rss>
