Skip to content
Cursor

Secure Schema MCP for Cursor

io.github.siddharth-coder13/secure-schema

Read-only MCP server for exposing database schema metadata without row data.

client:Cursor transport:stdio runtime:pypi

Install Secure Schema MCP in Cursor

~/.cursor/mcp.json · windows: %USERPROFILE%\.cursor\mcp.json

Held in this page only — never stored, logged, or sent anywhere but back to your screen.

{
  "mcpServers": {
    "secure-schema": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "mcp-secure-schema"
      ],
      "env": {
        "DATABASE_URL": "<DATABASE_URL>",
        "DATABASE_SCHEMA": "<DATABASE_SCHEMA>",
        "ALLOWED_TABLES": "<ALLOWED_TABLES>",
        "SECURE_SCHEMA_ENV": "<SECURE_SCHEMA_ENV>",
        "FASTMCP_CHECK_FOR_UPDATES": "<FASTMCP_CHECK_FOR_UPDATES>",
        "FASTMCP_SHOW_SERVER_BANNER": "<FASTMCP_SHOW_SERVER_BANNER>"
      }
    }
  }
}

Use .cursor/mcp.json in a project root instead to scope it to that project. Cursor merges both. Cursor docs

Secure Schema MCP in other clients