MCP.so
登录
P

Prisma

@prisma

关于 Prisma

暂无概览

基本信息

分类

数据库

传输方式

stdio

发布者

prisma

提交者

Nitin Gupta

配置

使用下面的配置,将此服务器添加到你的 MCP 客户端。

{
  "mcpServers": {
    "Prisma": {
      "command": "npx",
      "args": [
        "-y",
        "prisma",
        "mcp"
      ]
    }
  }
}

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

What is Prisma?

Prisma is a next-generation ORM that consists of Prisma Client (auto-generated type-safe query builder for Node.js/TypeScript), Prisma Migrate (declarative data modeling & migration system), and Prisma Studio (GUI to view and edit database data). It is designed for any Node.js or TypeScript backend application, including serverless and microservices.

How to use Prisma?

Install the @prisma/client npm package, which invokes prisma generate. Define a Prisma schema file with a data source, generator, and data model. Then import and instantiate PrismaClient in your code to send queries to your database.

Key features of Prisma

  • Auto-generated, fully type-safe query builder for Node.js & TypeScript
  • Declarative data modeling and migration system
  • Visual GUI (Prisma Studio) to view and edit data
  • Supports PostgreSQL, SQLite, and existing databases via introspection
  • Extensible with Prisma Accelerate, Optimize, and Studio
  • Works with REST, GraphQL, gRPC, and other API stacks

Use cases of Prisma

  • Building type-safe REST or GraphQL APIs backed by a database
  • Developing serverless applications with database access
  • Prototyping applications with Prisma Postgres or SQLite
  • Adding Prisma to an existing project with a custom database

FAQ from Prisma

What databases does Prisma support?

Prisma supports PostgreSQL, SQLite, and can work with existing databases via introspection. Quickstarts are available for Prisma Postgres and SQLite.

Does Prisma work with TypeScript?

Yes, Prisma Client provides full type-safety for all queries when using

评论

数据库 分类下的更多 MCP 服务器