惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

云风的 BLOG
云风的 BLOG
M
MIT News - Artificial intelligence
博客园 - Franky
J
Java Code Geeks
V
Visual Studio Blog
G
Google Developers Blog
罗磊的独立博客
MongoDB | Blog
MongoDB | Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Recent Announcements
Recent Announcements
Last Week in AI
Last Week in AI
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Stack Overflow Blog
Stack Overflow Blog
博客园 - 司徒正美
The GitHub Blog
The GitHub Blog
腾讯CDC
阮一峰的网络日志
阮一峰的网络日志
V
V2EX
博客园 - 【当耐特】
IT之家
IT之家
I
InfoQ
U
Unit 42
C
Check Point Blog
Martin Fowler
Martin Fowler

Changelog — PlanetScale

Replica connections graph — PlanetScale Branch start maintenance webhook now available for Vitess enterprise customers — PlanetScale Deploy request UI updates — PlanetScale PostgreSQL CPU and I/O tracking — PlanetScale Branch start maintenance webhook — PlanetScale Cloudflare Workers integration — PlanetScale PlanetScale for Postgres is now Generally Available — PlanetScale PostgreSQL Schema Recommendations — PlanetScale Postgres maintenance windows — PlanetScale Support for 10 new Postgres extensions — PlanetScale 2025 PCI DSS reporting now available — PlanetScale AWS PrivateLink for Postgres — PlanetScale Google Cloud Provider support for Postgres databases — PlanetScale Insights: percent runtime — PlanetScale New region: AWS ca-central-1 (Montreal) — PlanetScale Postgres event triggers are now supported — PlanetScale New Postgres extension: pg_squeeze — PlanetScale Provisioned IOPS display for Metal clusters — PlanetScale Insights: max query latency graphs — PlanetScale Pinned databases update — PlanetScale New Postgres extensions: pg_cron and pg_partman_bgw — PlanetScale pscale shell now supports Postgres databases — PlanetScale Migration guides for Aurora, Neon, and Supabase — PlanetScale New pscale role commands for CLI — PlanetScale Postgres migration guides and scripts — PlanetScale Postgres role management — PlanetScale Expanded Postgres network-attached storage I/O configuration — PlanetScale 2025 SOC 1 Type 2 & SOC 2 Type 2 reports now available — PlanetScale Prometheus Metrics Additions: vstreamer events and errors — PlanetScale Postgres network-attached storage configuration — PlanetScale
Model Context Protocol support — PlanetScale
2025-04-11 · via Changelog — PlanetScale

Introducing Database Traffic Control™: resource budgets for your Postgres query traffic.Learn more

Note: The PlanetScale MCP server is now authenticated and externally hosted for even better integration with your projects. See the MCP documentation for setup instructions.

We have shipped Model Context Protocol (MCP) support, enabling seamless integration between PlanetScale databases and AI tools. This integration allows tools like Claude or Cursor to directly access read-only database information to answer your questions more intelligently.

We have two new CLI Commands you can use to get up and running

pscale mcp install --target <claude|cursor|zed> # Installs the PlanetScale MCP server config for your tool
pscale mcp server                               # Enables your AI tool to perform read-only database interactions

Using this functionality allows you to interact with your PlanetScale organizations and databases right from your AI tooling. You can ask questions like "How many users do I have in North Carolina?" or "How many rows are in my messages table?" Claude, Cursor, Zed, or other tools will then be able to access read-only info from your PlanetScale account to give bespoke answers. You can get started using Claude, Cursor, or Zed using the instructions below.

For Claude Desktop:

  • Upgrade to the latest version of pscale CLI
  • Run pscale mcp install --target claude
  • Restart Claude Desktop

For Cursor:

  • Run pscale mcp install --target cursor
  • Restart Cursor (or reload MCP servers)

If you prefer to configure Cursor (or another MCP-compatible tool) manually, add the following to your .cursor/mcp.json in your project or home directory

{
  "mcpServers": {
    "planetscale": {
      "args": [
        "mcp",
        "server"
      ],
      "command": "pscale"
    }
  }
}

For Zed:

  • Run pscale mcp install --target zed
  • Restart or reload Zed so it reads the PlanetScale MCP entry

Other tools should accept a configuration similar to the Cursor example above.