wip
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
# prisma mcp
|
||||
|
||||
Starts Prisma's MCP server for AI development tools.
|
||||
|
||||
## Command
|
||||
|
||||
```bash
|
||||
prisma mcp
|
||||
```
|
||||
|
||||
## What It Does
|
||||
|
||||
- Starts a Model Context Protocol (MCP) server for your Prisma project
|
||||
- Exposes Prisma schema and database context to compatible AI tools
|
||||
- Helps AI assistants understand models, generate queries, and suggest migrations
|
||||
|
||||
## Usage
|
||||
|
||||
```bash
|
||||
prisma mcp
|
||||
```
|
||||
|
||||
## Typical Use Cases
|
||||
|
||||
- Connect Prisma to ChatGPT, Claude, or other MCP-aware tools
|
||||
- Give an AI assistant access to your Prisma schema structure
|
||||
- Help an agent propose queries, schema updates, and migration steps with project context
|
||||
|
||||
## Notes
|
||||
|
||||
- Run this from the project that contains your Prisma schema and `prisma.config.ts`
|
||||
- The command is separate from Prisma Studio and does not open a browser UI
|
||||
- The MCP server exposes `migrate-status`, `migrate-dev`, and Prisma Studio tooling. It does not expose the destructive `migrate-reset` tool; do not claim it is available or try to bypass that safety boundary.
|
||||
- For destructive shell commands, follow `agent-safety.md` and obtain explicit user consent.
|
||||
|
||||
## References
|
||||
|
||||
- [Prisma CLI `mcp` command](https://docs.prisma.io/docs/cli/mcp)
|
||||
- [Prisma MCP Server](https://www.prisma.io/docs/ai/tools/chatgpt)
|
||||
Reference in New Issue
Block a user