pervasive-sql-mcp
Verified Safeby janjic-portside
Overview
Provides a Model Context Protocol (MCP) server for interacting with Pervasive SQL databases via ODBC.
Installation
npx tsx src/index.tsEnvironment Variables
- PERVASIVE_DSN
Security Notes
The server runs locally and communicates via stdio, limiting network exposure. Connection credentials can be passed via environment variables or per-tool call, which is standard for local tools. The `query` and `execute_batch` tools allow arbitrary SQL execution, which is a powerful feature and correctly flagged in the README as potentially dangerous if misused (e.g., DELETE/DROP statements). However, SQL queries using parameters are handled securely by `conn.query(sql, params)` preventing SQL injection for parameterized queries. No direct `eval` or intentional obfuscation was found in the provided source code.
Similar Servers
mongodb-mcp-server
Provides a robust AI agent interface for interacting with MongoDB databases and MongoDB Atlas cloud services, enabling tool-calling for data management, monitoring, and search operations.
enhanced-postgres-mcp-server
This server acts as a Model Context Protocol interface for PostgreSQL, enabling LLMs to query data, modify records, and manage database schema objects with read and write capabilities.
jewei-mssql-mcp-server
Provides a Micro-Agent Protocol (MCP) server for querying Microsoft SQL Server databases and retrieving table structures.
postgres-mysql-mcp-server
A Model Context Protocol (MCP) server that enables AI assistants to query PostgreSQL and MySQL databases for schema introspection and data retrieval.