Supabase功能请求
STDIO用于查询Supabase特性建议的服务器
用于查询Supabase特性建议的服务器
This is a Model Context Protocol (MCP) server that connects to Supabase and allows you to query the feature_suggestions table.
Make sure your .env
file contains the following Supabase credentials:
SUPABASE_URL=your_supabase_url
SUPABASE_ANON_KEY=your_supabase_anon_key
Install the required dependencies:
npm install
Run the MCP server using:
npx tsx mcp-server.ts
Or use the npm script:
npm run dev
npx tsx /path/to/mcp-server.ts
{ "mcpServers": { "supabase": { "command": "npx", "args": ["tsx", "/path/to/mcp-server.ts"] } } }
Query the feature_suggestions table in your Supabase database.
Parameters:
limit
(number, optional): Maximum number of records to return (default: 100)Example usage in AI tool:
Can you show me feature suggestions from the database?
Or with a limit:
Can you show me the top 10 feature suggestions?