Command Palette

Search for a command to run...

UnylyUnyly
Весь каталог

Devart Mcp Server Postgresql

БесплатноНе проверен

Self-hosted MCP server for secure AI access to PostgreSQL databases.

GitHubEmbed

Описание

Self-hosted MCP server for secure AI access to PostgreSQL databases.

README

Devart MCP Server for PostgreSQL

Devart MCP Server for PostgreSQL

Devart MCP Server for PostgreSQL enables AI clients to interact with your data through a secure server running in your environment. It turns a regular AI chat into a practical way to work with real-world business data — and it is faster than conventional export or manual querying.

Key benefits

Devart MCP Server for PostgreSQL allows you to:

  • Work with data intuitively through natural language.
  • Retrieve the required data for analysis within minutes.
  • Report on your data faster with AI-powered assistance.
  • Minimize manual data handling and integration maintenance.

How it works

Devart MCP Server for PostgreSQL helps AI clients communicate directly with PostgreSQL databases using natural-language prompts. It translates AI requests into structured queries, executes them through Devart connectivity drivers, and returns clean, structured results for seamless AI-powered data access.

Devart MCP Server architecture

Quick start

To get started with Devart MCP Server for PostgreSQL:

1. Download and install Devart ODBC Driver for PostgreSQL.

2. Download and install Devart MCP Server for PostgreSQL.

3. In Devart MCP Server for PostgreSQL, configure your data connection and integration settings.

Devart MCP Server configuration

4. Run your first natural-language query.

Need an MCP Server for multiple data sources?

Manual installation and configuration

Prerequisites

Before building and running Devart MCP Server for PostgreSQL, ensure the following components are installed:

  • .NET 8 SDK
  • ADO.NET connectionDevart.AI.McpServer.AdoNet.PostgreSql.csproj Devart dotConnect for PostgreSQL (installed automatically via NuGet during build)
  • ODBC connectionDevart.AI.McpServer.Odbc.PostgreSql.csproj Devart ODBC Driver for PostgreSQL (requires manual download and installation)

Step 1: Clone the repository

Clone the project repository and navigate to the project directory:

1. Open Command Prompt.

2. Enter the following command:

git clone https://github.com/devart-ai-connectivity/devart-mcp-server-postgresql.git
cd devart-mcp-server-postgresql

Step 2: Build the MCP Server from source

You can build Devart MCP Server for PostgreSQL from source using either of the supported database connectivity technologies: ADO.NET or ODBC.

  • To build the MCP server with ADO.NET, run the following command:
dotnet publish Devart.AI.McpServer.AdoNet/Devart.AI.McpServer.AdoNet.PostgreSql/Devart.AI.McpServer.AdoNet.PostgreSql.csproj -c ReleasePostgreSql /p:TargetFramework=net8.0

The Devart dotConnect for PostgreSQL NuGet package is downloaded and restored automatically.

  • To build the MCP server with ODBC, select the command based on the bitness of your data source.

For 64-bit data source, run the following command:

dotnet publish Devart.AI.McpServer.Odbc/Devart.AI.McpServer.Odbc.PostgreSql/Devart.AI.McpServer.Odbc.PostgreSql.csproj -c ReleasePostgreSql -r "win-x64" /p:TargetFramework=net8.0

For 32-bit data source, run the following command:

dotnet publish Devart.AI.McpServer.Odbc/Devart.AI.McpServer.Odbc.PostgreSql/Devart.AI.McpServer.Odbc.PostgreSql.csproj -c ReleasePostgreSql -r "win-x86" /p:TargetFramework=net8.0

Note

The target platform must match the bitness of your ODBC data source.

Step 3: Configure the database connection for the MCP Server

1. Create an mcpserver.json configuration file in the directory containing the built MCP Server executable.

2. In the file, configure the database connection.

  • Configure a connection with ADO.NET.

Add the following configuration to the mcpserver.json file:

{
  "Connections": [
    {
      "Name": "my_postgresql",
      "ConnectionString": "Server=localhost;User Id=postgres;Password=your_password;Database=your_database;",
      "ProtocolType": "stdio"
    }
  ]
}
  • Configure a connection with ODBC.

Add the following configuration to the mcpserver.json file:

{
  "Connections": [
    {
      "Name": "my_postgresql",
      "DsnName": "your_dsn_name",
      "ProtocolType": "stdio"
    }
  ]
}
  • Configure a connection with ODBC using a connection string.

Add the following configuration to the mcpserver.json file:

{
  "Connections": [
    {
      "Name": "my_postgresql",
      "ConnectionString": "Driver={Devart ODBC Driver for PostgreSQL};Server=localhost;User ID=postgres;Password=your_password;Database=your_database;",
      "ProtocolType": "stdio"
    }
  ]
}

where:

  • Name — The connection name.

  • ConnectionString (applies to ADO.NET) — A database-specific connection string used to establish a connection to the target database.

  • DsnName (applies to ODBC) — The name of your data source.

  • ProtocolType — A transport protocol. The possible options are: stdio or http.

  • HttpPort (required if ProtocolType is set to http) — The port number for the http protocol.

Step 4: Run the MCP server

After you configure the MCP Server, you can start it.

Note

This step is required only when ProtocolType is configured as http. If you use the stdio transport protocol, your AI client starts the server automatically.

  • To start the server with ADO.NET, run the following command:
Devart.AI.McpServer.AdoNet.PostgreSql.exe run my_postgresql
  • To start the server with ODBC, run the following command:
Devart.AI.McpServer.Odbc.PostgreSql.exe run my_postgresql

where my_postgresql is the name of the ODBC connection.

Step 5: Integrate with Claude Desktop

1. Open claude_desktop_config.json, the Claude configuration file.

Tip

If you can't locate the configuration file, it may not exist yet. To create it, open Claude Desktop and navigate to File > Settings > Developer, then click Edit Config. The folder with the claude_desktop_config.json file opens.

2. Add one of the following objects, depending on the transport protocol used by MCP Server:

  • STDIO
{
  "mcpServers": {
    "devart": {
      "command": "C:\\path\\to\\Devart.AI.McpServer.AdoNet.PostgreSql.exe",
      "args": [
        "run",
        "my_postgresql"
      ]
    }
  }
}

where:

  • devart is the connector name that will appear in Claude Desktop.

  • C:\\path\\to\\Devart.AI.McpServer.AdoNet.PostgreSql.exe is the path to the executable file. For an ODBC connection, use Devart.AI.McpServer.Odbc.PostgreSql.exe.

  • my_postgresql is the connection name specified in the mcpserver.json configuration file.

  • HTTP

      "mcpServers": {
        "devart": {
          "command": "npx",
          "args": [
            "-y",
            "mcp-remote",
            "http://localhost:5000/sse"
          ]
        }
      }
    

    where:

    • devart is the connector name that will appear in Claude Desktop.
    • 5000 is the MCP Server listening port.

3. Save the file.

4. Restart Claude Desktop.

Devart MCP Server for PostgreSQL is now integrated with Claude, and devart appears in the Claude Desktop app in Customize > Connectors.

You can also integrate Devart MCP Server for PostgreSQL with other AI clients such as Cline, Codex, Cursor, Visual Studio Code, Windsurf, Zed.

Supported clients

Devart MCP Server for PostgreSQL supports integration with the following AI clients:

  • Claude Desktop
  • Visual Studio Code
  • Cursor
  • Codex
  • Windsurf
  • Cline
  • Zed
  • ...and other MCP-compatible AI clients

Typical use cases

Devart MCP Server for PostgreSQL is a practical fit for teams working with PostgreSQL as their primary data source.

  • Self-service analytics on PostgreSQL data
    Let analysts, product managers, sales, finance, and operations teams ask natural-language questions without writing SQL.

  • Developer copilot for production PostgreSQL databases
    Help developers and DBAs investigate real data, inspect schemas, explore joins, and troubleshoot anomalies faster.

  • Support and customer operations investigation
    Let support teams quickly check orders, subscriptions, payments, statuses, and account history stored in PostgreSQL.

  • Schema exploration and reverse engineering
    Use AI to explain tables, relationships, and business logic in legacy or poorly documented PostgreSQL databases.

  • Ad-hoc reporting and internal analysis
    Generate one-off reports, investigate trends, and answer business questions directly from PostgreSQL without building a dashboard first.

  • Secure on-premises AI access to PostgreSQL
    Keep PostgreSQL data inside your infrastructure while giving AI tools a controlled path to work with real business data.

Licensing and activation

Devart MCP Server for PostgreSQL is distributed as a free single-source MCP server.

To connect to PostgreSQL, the server requires the corresponding Devart ODBC Driver for PostgreSQL, which is a paid product.

A 30-day free trial is available for the Devart ODBC Driver for PostgreSQL.

See the product page and documentation for the latest installation and activation details.

Support

Other Devart connectivity solutions

from github.com/devart-ai-connectivity/devart-mcp-server-postgresql

Установка Devart Mcp Server Postgresql

У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.

▸ github.com/devart-ai-connectivity/devart-mcp-server-postgresql

FAQ

Devart Mcp Server Postgresql MCP бесплатный?

Да, Devart Mcp Server Postgresql MCP бесплатный — установка в пару кликов через Unyly без оплаты.

Нужен ли API-ключ для Devart Mcp Server Postgresql?

Нет, Devart Mcp Server Postgresql работает без API-ключей и переменных окружения.

Devart Mcp Server Postgresql — hosted или self-hosted?

Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.

Как установить Devart Mcp Server Postgresql в Claude Desktop, Claude Code или Cursor?

Открой Devart Mcp Server Postgresql на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.

Похожие MCP

wenb1n-dev/SmartDB_MCP

A universal database MCP server supporting simultaneous connections to multiple databases. It provides tools for database operations, health analysis, SQL optim

wenb1n-devавтор: wenb1n-dev

Postgres Server

This server enables interaction with PostgreSQL databases through the Model Context Protocol, optimized for the AWS Bedrock AgentCore Runtime. It provides tools

madhurprashавтор: madhurprash

Postgres

Query your database in natural language

Anthropicавтор: Anthropic

PostgreSQL

Read-only database access with schema inspection.

modelcontextprotocolавтор: modelcontextprotocol

Redis

Interact with Redis key-value stores.

modelcontextprotocolавтор: modelcontextprotocol

SQLite

Database interaction and business intelligence capabilities.

modelcontextprotocolавтор: modelcontextprotocol

mxcp

Open-source framework for building enterprise-grade MCP servers using just YAML, SQL, and Python, with built-in auth, monitoring, ETL and policy enforcement.

raw-labsавтор: raw-labs

tadas-github/a2asearch-mcp

MCP server to search 4,800+ MCP servers, AI agents, CLI tools and agent skills. Install: npx -y a2asearch-mcp. Ask Claude: "Find MCP servers for database access

tadas-githubавтор: tadas-github

julien040/anyquery

Query more than 40 apps with one binary using SQL. It can also connect to your PostgreSQL, MySQL, or SQLite compatible database. Local-first and private by desi

julien040автор: julien040

drakonkat/wizzy-mcp-tmdb

A MCP server for The Movie Database API that enables AI assistants to search and retrieve movie, TV show, and person information.

drakonkatавтор: drakonkat

Compare Devart Mcp Server Postgresql with

Не уверен что выбрать?

Найди свой стек за 60 секунд

Автор?

Embed-бейдж для README

Похожее

Все в категории data