Local-only mode with no access token
Feature request
Is your feature request related to a problem? Please describe.
I want to be able to run the MCP with a local project without any risk that it will affect production environments.
Describe the solution you'd like
Functionality that runs entirely locally when no personal access token is given., based on config.toml.
Describe alternatives you've considered
Creating a separate account just to use for a personal access token, but that would be stupid.
Additional context
n/a
For now, in VSCode, you can follow this tutorial and add a generic postgresql MCP instead.
Here are my settings:
.vscode/mcp.json
{
"servers": {
"postgres": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-postgres",
"postgresql://postgres:postgres@localhost:54322/postgres"
]
}
}
}
I second this, @Revadike your example has read-only abilities
I'll third this as well :-)
Hey folks this is currently WIP now: https://github.com/supabase-community/supabase-mcp/pull/92