chore: import upstream snapshot with attribution
Component Security Validation / Security Audit (push) Has been cancelled
Deploy to Cloudflare Pages / deploy (push) Has been cancelled

This commit is contained in:
wehub-resource-sync
2026-07-13 12:38:58 +08:00
commit bb5c75ce05
8824 changed files with 1946442 additions and 0 deletions
@@ -0,0 +1,15 @@
{
"mcpServers": {
"dbhub": {
"description": "Zero-dependency, token-efficient database MCP server supporting PostgreSQL, MySQL, MariaDB, SQL Server, and SQLite connections.",
"command": "npx",
"args": [
"-y",
"@bytebase/dbhub@latest"
],
"env": {
"DATABASE_DSN": "<your-database-dsn>"
}
}
}
}
@@ -0,0 +1,12 @@
{
"mcpServers": {
"mongodb-official": {
"description": "Official MongoDB MCP Server by MongoDB. Connect to MongoDB databases and Atlas clusters for querying, aggregation, and collection management.",
"command": "npx",
"args": ["-y", "mongodb-mcp-server@latest"],
"env": {
"MDB_MCP_CONNECTION_STRING": "<your-mongodb-connection-string>"
}
}
}
}
@@ -0,0 +1,12 @@
{
"mcpServers": {
"mysql": {
"description": "Connect to MySQL databases for direct data access, queries, and database management within Claude Code workflows.",
"command": "uvx",
"args": ["mcp-server-mysql"],
"env": {
"MYSQL_CONNECTION_STRING": "mysql://user:password@localhost:3306/dbname"
}
}
}
}
@@ -0,0 +1,9 @@
{
"mcpServers": {
"Neon": {
"description":"MCP server for interacting with Neon Management API and databases",
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.neon.tech/mcp"]
}
}
}
@@ -0,0 +1,8 @@
{
"mcpServers": {
"postgres-documentation": {
"description": "PostgreSQL documentation and skills for writing better Postgres code",
"url": "https://mcp.tigerdata.com/docs"
}
}
}
@@ -0,0 +1,12 @@
{
"mcpServers": {
"postgresql": {
"description": "Connect to PostgreSQL databases for advanced data operations, complex queries, and enterprise database management.",
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-postgres"],
"env": {
"POSTGRES_CONNECTION_STRING": "postgresql://user:password@localhost:5432/dbname"
}
}
}
}
@@ -0,0 +1,16 @@
{
"mcpServers": {
"redis": {
"description": "Official Redis MCP Server providing natural language interface for Redis databases. Query, manage, and interact with Redis data through Claude.",
"command": "uvx",
"args": [
"--from",
"redis-mcp-server@latest",
"redis-mcp-server"
],
"env": {
"REDIS_URL": "<your-redis-url>"
}
}
}
}
@@ -0,0 +1,17 @@
{
"mcpServers": {
"supabase": {
"description": "Connect your Claude Code to Supabase using MCP",
"command": "npx",
"args": [
"-y",
"@supabase/mcp-server-supabase@latest",
"--read-only",
"--project-ref=<project-ref>"
],
"env": {
"SUPABASE_ACCESS_TOKEN": "<personal-access-token>"
}
}
}
}