Skip to main content
Glama

DevDb MCP Server

devdbrc.json4.34 kB
{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "DevDb Configuration", "description": "Configuration file for DevDb VS Code extension", "type": "array", "items": { "type": "object", "oneOf": [ { "title": "SQLite Configuration", "required": [ "type", "path" ], "properties": { "type": { "type": "string", "enum": [ "sqlite" ], "description": "Database type - SQLite" }, "path": { "type": "string", "description": "Path to SQLite database file" } } }, { "title": "MySQL/MariaDB Configuration", "required": [ "type", "username", "password", "database" ], "properties": { "name": { "type": "string", "description": "Optional name for this connection" }, "type": { "type": "string", "enum": [ "mysql", "mariadb" ], "description": "Database type - MySQL or MariaDB" }, "host": { "type": "string", "description": "Database host", "default": "localhost" }, "port": { "type": "number", "description": "Database port", "default": 3306 }, "username": { "type": "string", "description": "Database username" }, "password": { "type": "string", "description": "Database password" }, "database": { "type": "string", "description": "Database name" }, "options": { "type": "object", "description": "Driver-specific options for MSSQL, e.g. trustServerCertificate", "additionalProperties": true } } }, { "title": "PostgreSQL Configuration", "required": [ "type", "username", "password", "database" ], "properties": { "name": { "type": "string", "description": "Optional name for this connection" }, "type": { "type": "string", "enum": [ "postgres" ], "description": "Database type - PostgreSQL" }, "host": { "type": "string", "description": "Database host", "default": "localhost" }, "port": { "type": "number", "description": "Database port", "default": 5432 }, "username": { "type": "string", "description": "Database username" }, "password": { "type": "string", "description": "Database password" }, "database": { "type": "string", "description": "Database name" } } }, { "title": "Microsoft SQL Server Configuration", "required": [ "type", "username", "password", "database" ], "properties": { "name": { "type": "string", "description": "Optional name for this connection" }, "type": { "type": "string", "enum": [ "mssql" ], "description": "Database type - Microsoft SQL Server" }, "host": { "type": "string", "description": "Database host", "default": "localhost" }, "port": { "type": "number", "description": "Database port", "default": 1433 }, "username": { "type": "string", "description": "Database username" }, "password": { "type": "string", "description": "Database password" }, "database": { "type": "string", "description": "Database name" } } } ] } }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/damms005/devdb-vscode'

If you have feedback or need assistance with the MCP directory API, please join our Discord server