Same door for humans and AI. No gatekeeper.Register →
Explorer/MCP/smithery/prisma
REMOTE

Prisma

smithery/prisma

Database toolkit and ORM for TypeScript. Query schemas, explore data models, and manage database migrations.

13 tools available
The Journeyman
A reasonable amount of history and nothing concerning in the scan.
Time indexed (6mo)
13toolsRemote/ HTTP6moindexed
100% uptime · 287ms avgChecked Aug 13, 2026
Quality Score
57/95
Established
Risk Score
0/100
Clean
How is this calculated?
Quality Breakdown
Tenure14.1/20
171 days indexed
Capability17.9/25
Tools: 5.9/13 (13 tools)
Description: 5/5
Endpoint: 7/7
Adoption0/25
Use count: 0/20 (0 uses)
Multi-registry: 0/5 (1 registry)
Reliability25/25
Currently live: 10/10
Uptime history: 15/15 100% (16/16 checks)
Security scan: 0 pts in v1.0; ready to weight when coverage improves
Incomplete Data Cap (60)
Usage data is not available for this server. Quality is capped until adoption can be measured.
Risk
0Clean
No signals detected.
The scanner shows
13 tools. Nothing caught our attention.
First indexed Mar 29, 2026
Server Profile
Tools catalogued
13
13 tools available. Full list below.
Hosting
Remote / HTTP
Runs on the internet. No access to your filesystem, SSH keys, or environment variables.
Registry presence
Not verified
Not yet verified by the Official MCP Registry.
Liveness
100%
Based on 48 checks. Average response: 287ms.
Publisher Verification
Not yet verified by the Official MCP Registry.
Endpoint
https://prisma.run.tools
Tools (13)
create_prisma_postgres_database
Create a new managed Prisma Postgres database. Specify a name that makes sense to the user - maybe the name of the project they are working on. Specify a region that makes sense for the user. Valid regions are: us-east-1,us-west-1,eu-west-3,eu-central-1,ap-northeast-1,ap-southeast-1. If you are unsure, pick us-east-1. If the response indicates that you have reached the workspace plan limit, you should instruct the user to do one of these things: - If they want to connect to an existing database, they should go to console.prisma.io and copy the connection string. - If they want to upgrade their plan, they should go to console.prisma.io and upgrade their plan in order to be able to create more databases. - If they want to delete a database, they can list these via the List-Prisma-Postgres-Databases tool and then delete one they no longer need. If the response is successful: - If the user has the prisma client installed, offer to populate their .env file with the DATABASE_URL value.
list_prisma_postgres_databases
Fetch a list of available Prisma Postgres Databases for user's workspace. Each database in the response includes an 'id' field which should be used as the 'databaseId' parameter for other tools like introspect_database_schema or execute_sql_query. If the response indicates that you have no databases you should instruct the user to do one of these things: - If they want to create a new database, they should use the Create-Prisma-Postgres-Database tool - If they want to connect to an existing database, they should go to console.prisma.io and copy the connection string - If they want to upgrade their plan, they should go to console.prisma.io and upgrade their plan in order to be able to create more databases
delete_prisma_postgres_database
Delete a Prisma Postgres database with the given database id. Inform the user that this is a permanent action and cannot be undone. Ask them to confirm that they wish to proceed. To obtain the correct database id, use the List-Prisma-Postgres-Databases tool first. If the response indicates that the database was not found, instruct the user to verify the database id using the List-Prisma-Postgres-Databases tool. If the response indicates that you cannot delete the default environment, instruct the user to delete the project instead or create a new default environment first.
create_prisma_postgres_connection_string
Create a new Connection String for a Prisma Postgres database with the given id. To obtain the correct input parameters use the List-Prisma-Postgres-Databases tool. If the response does not contain a Direct Connection String, only display the Prisma Connection String. If the response contains both Direct and Prisma Connection Strings, display both. If the response indicates that you have no databases you should instruct the user to do one of these things: - If they want to create a new database, they should use the Create-Prisma-Postgres-Database tool. - If they want to upgrade their plan, they should go to console.prisma.io and upgrade their plan in order to be able to create more databases.
delete_prisma_postgres_connection_string
Delete a Connection String with the given connection string id. Inform the user that this is a permanent action and cannot be undone. Ask them to confirm that they wish to proceed. To obtain the correct input parameters use the List-Prisma-Postgres-Connection-Strings tool
fetch_workspace_details
Fetch the details of a Prisma Postgres workspace. The Result will be returned as JSON.
Show all 13 tools ↓
list_prisma_postgres_connection_strings
Fetch a list of available Prisma Postgres Database Connection Strings for the given database id. To obtain a list of available database ids, use the List-Prisma-Postgres-Databases tool If the response indicates that you have no connection strings you should instruct the user to do one of these things: - If they want to create a new connection string, they should use the Create-Prisma-Postgres-Connection-String tool
create_prisma_postgres_backup
Create a new managed Prisma Postgres Backup. Note: On-demand backup creation is not currently supported. Backups are created automatically by the system. Use the list_prisma_postgres_backups tool to view available automated backups.
list_prisma_postgres_backups
Fetch a list of available Prisma Postgres Backups for the given database id. To obtain a list of available database ids, use the List-Prisma-Postgres-Databases tool If the response indicates that you have no databases you should instruct the user to do one of these things: - If they want to create a new database, they should use the Create-Prisma-Postgres-Database tool If the response indicates that you have no backups you should instruct the user to do one of these things: - If they want to create a new backup, they should use the Create-Prisma-Postgres-Backup tool
create_prisma_postgres_recovery
Restore a Prisma Postgres Database to a new database with the given Backup id. To obtain the correct input parameters use the List-Prisma-Postgres-Backups tool. The target database name should be unique and not already exist. If the response is successful, use the List-Prisma-Postgres-Databases and Create-Prisma-Postgres-Connection-String tools to get the new connection string.
execute_sql_query
Execute a SQL query on a Prisma Postgres database with the given id. To obtain the correct input parameters use the List-Prisma-Postgres-Databases tool. To obtain context about the database use the Introspect-Database-Schema tool. This tool will not have permission to execute schema updates. To make schema updates use the Execute-Schema-Update tool. The Result will be returned as JSON. <caution> - Make sure that the user is aware that this tool will execute a SQL query on a Prisma Postgres database and may result in data loss. - Confirm that the user understands the risks. - Confirm that the user understands the SQL query before you execute it. - Try restrict queries to Read-Only. </caution>
introspect_database_schema
Introspect the schema of a Prisma Postgres database with the given id. To obtain the correct input parameters use the List-Prisma-Postgres-Databases tool. The Result will be returned as JSON.
execute_prisma_postgres_schema_update
Execute a Schema Update on a Prisma Postgres database with the given id. To obtain the correct input parameters use the List-Prisma-Postgres-Databases tool. To obtain context about the database use the Introspect-Database-Schema tool. This tool should be used for schema updates only. To read/write data use the Execute-Sql-Query tool. The Result will be returned as JSON. <caution> - Make sure that the user is aware that this tool will execute a Schema Update on a Prisma Postgres database and may result in data loss. - Confirm that the user understands the risks. - Confirm that the user understands the SQL query before you execute it. </caution>

Is this your server?

Create a free RNWY account to connect your on-chain identity to this server. MCP server claiming is coming; register now and you'll be first in line.

Create your account →
More from smithery
Recreation.gov
Search and explore US federal recreation areas, campgrounds, facilities, permits, and reservations via the RIDB.
Ferryhopper
Ferry booking platform across Europe. Search routes, compare schedules, check availability, and book ferry tickets.
Ticktick
TickTick is a cross-platform task management and to-do list application designed to help users organize their tasks and schedules efficiently.
Hex
Search your Hex projects and ask questions about your data with threaded analyses. Start a new thread, then monitor progress and retrieve results as they’re ready. Continue the conversation to refine answers and dive deeper into insights.
Hugging Face
AI model hub for machine learning. Discover models, explore datasets, and access model documentation and capabilities.
Google Classroom
Google Classroom is a free web service developed by Google for schools that aims to simplify creating, distributing, and grading assignments
Similar servers
GCP MCP
Enables managing Google Cloud Platform resources through natural language commands in Claude Desktop, supporting comprehensive operations across compute, storage, databases, networking, monitoring, and IAM without manual credential setup.
MCP Embedding Search
A Model Context Protocol server that searches transcript segments in a Turso database using vector similarity, allowing users to find relevant content by asking questions without generating new embeddings.
ZoomEye MCP Server
MCP server for querying the ZoomEye API
adx-mcp-server
AI assistants to query and analyze Azure Data Explorer databases through standardized interfaces.
Notion MCP Server
A Model Context Protocol server that connects Claude and other AI assistants to your Notion workspace, allowing AIs to interact with databases, pages, and blocks.
GZOO Cortex
Local-first knowledge graph for developers. Watches project files, extracts entities and relationships via LLMs, and lets you query across projects in natural language with source citations. Provides 4 MCP tools: get_status, list_projects, find_entity, query_cortex.
Indexed from Smithery · Updates nightlyView on Smithery →