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

推荐订阅源

爱范儿
爱范儿
大猫的无限游戏
大猫的无限游戏
J
Java Code Geeks
MongoDB | Blog
MongoDB | Blog
Martin Fowler
Martin Fowler
GbyAI
GbyAI
Microsoft Azure Blog
Microsoft Azure Blog
Recent Announcements
Recent Announcements
F
Fortinet All Blogs
B
Blog
U
Unit 42
B
Blog RSS Feed
D
DataBreaches.Net
Google DeepMind News
Google DeepMind News
人人都是产品经理
人人都是产品经理
腾讯CDC
量子位
酷 壳 – CoolShell
酷 壳 – CoolShell
V
Visual Studio Blog
博客园 - 聂微东
MyScale Blog
MyScale Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 三生石上(FineUI控件)
Engineering at Meta
Engineering at Meta

Vercel News

Vercel Open Source Program: Winter 2026 cohort How Notion Workers run untrusted code at scale with Vercel Sandbox How we run Vercel's CDN in front of Discourse From idea to secure checkout in minutes with Stripe Building Slack agents can be easy Scaling redirects to infinity on Vercel Advancing Python typing Gamma builds design-first agents with Vercel How Avalara turns pipe dreams into patent-pending with v0 Keeping community human while scaling with agents How OpenEvidence built a healthcare AI that physicians actually trust Security boundaries in agentic architectures Skills Night: 69,000+ ways agents are getting smarter Video Generation with AI Gateway We Ralph Wiggumed WebStreams to make them 10x faster How Stably ships AI testing agents in hours, not weeks How we built AEO tracking for coding agents Anyone can build agents, but it takes a platform to run them Introducing Geist Pixel The Vercel AI Accelerator is back with $6m in credits Making agent-friendly pages with content negotiation The Vercel OSS Bug Bounty program is now available Introducing the new v0 Run untrusted code with Vercel Sandbox, now generally available How Stripe built a game-changing app in a single flight with v0 How Sensay went from zero to product in six weeks AGENTS.md outperforms skills in our agent evals Agent skills explained: An FAQ Testing if "bash is all you need" AWS databases are now live on the Vercel Marketplace and v0
MongoDB Atlas is now available on the Vercel Marketplace
Hedi ZandiProduct Manager · 2025-09-10 · via Vercel News

MongoDB Atlas is now available on the Vercel Marketplace. Developers can now provision a fully managed MongoDB database directly from your Vercel dashboard and connect it to your project without leaving the platform.

Adding a database to your project typically means managing another account, working through connection setup, and coordinating billing across services. The Vercel Marketplace brings these tools into your existing workflow, so you can focus on building rather than configuring.

Link to headingShip faster with a unified workflow

Provisioning Atlas through Vercel automatically configures your project's environment variables and integrates billing into your Vercel account. Database setup and management gets handled by MongoDB Atlas while you maintain your existing workflow on Vercel.

We’re excited to partner with MongoDB to bring Atlas into the Vercel Marketplace. By combining MongoDB’s flexible data platform with Vercel’s focus on developer experience, we’re giving our joint community a faster path to build and scale intelligent applications on the AI Cloud.

Tom Occhino, Chief Product Officer at Vercel

Other key benefits include:

  • One-click setup: No separate MongoDB Atlas signup needed. Your Atlas account gets created automatically and linked if you don't already have one

  • Integrated management: Atlas is managed from your Vercel dashboard with integrated billing and provisioning. Monitor your app and database from one place

  • Flexible, scalable data: MongoDB Atlas provides a document data model that works with structured or unstructured data, plus horizontal scaling with replica sets and sharding. Choose from free, pre-provisioned, or serverless deployment options

  • Built-in search and AI readiness: Atlas includes full-text search, vector search, and semantic search for AI applications, giving your Vercel apps advanced querying and AI/ML capabilities out-of-the-box

  • High performance and security: Low-latency data access with global replicas, plus built-in security features like encryption and access controls

Vercel powers many of the best experiences on the web, with an exceptional focus on developer experience from open source to their AI Cloud. We are thrilled to be launching onto the Vercel Marketplace, supercharging our joint community with the power of MongoDB's flexible document model with integrated search and vector search.

Andrew Davidson, SVP Products at MongoDB

This integration provides a fast, modern data layer to power web and AI applications on Vercel. Once you provision Atlas through the Marketplace, connecting to your database is straightforward:

import { MongoClient, MongoClientOptions } from 'mongodb';

import { attachDatabasePool } from '@vercel/functions';

const options: MongoClientOptions = {

appName: "devrel.vercel.integration",

maxIdleTimeMS: 5000

};

const client = new MongoClient(process.env.MONGODB_URI, options);

// Attach the client to ensure proper cleanup on function suspension

attachDatabasePool(client);

// Export a module-scoped MongoClient to ensure the client can be shared across functions.

export default client;

The MONGODB_URI environment variable gets configured automatically when you provision Atlas through Vercel, so you can start building immediately.

Link to headingGet started with MongoDB Atlas on Vercel

MongoDB Atlas is available on the Vercel Marketplace for customers on all plans.

Deploy the MongoDB Atlas Forum template on Vercel.