typedb-mcp
Verified Safeby typedb
Overview
Enables AI assistants and other Model Context Protocol (MCP) clients to interact with TypeDB databases via a standardized Python server.
Installation
python -m typedb_mcp.serverEnvironment Variables
- TYPEDB_HOST
- TYPEDB_PORT
- TYPEDB_DATABASE
- TYPEDB_USERNAME
- TYPEDB_PASSWORD
Security Notes
The provided source code only includes the README.md, not the actual server implementation files (e.g., server.py, tools/). Therefore, a comprehensive security audit for patterns like 'eval', obfuscation, or malicious code cannot be performed. The server interacts with a database and executes TypeQL queries, which inherently carries a risk of injection if input is not properly sanitized and parameterized in the unseen code. Based on the README alone, no explicit dangerous patterns are visible, and environment variables are used for sensitive connection details, which is a good practice. The score assumes standard secure coding practices are followed in the underlying Python implementation.
Similar Servers
context-portal
A database-backed Model Context Protocol (MCP) server for managing structured project context, designed to be used by AI assistants and developer tools within IDEs and other interfaces for Retrieval Augmented Generation (RAG) and prompt caching.
anytype-mcp
The Anytype MCP Server enables AI assistants to interact with Anytype's API through natural language for knowledge management.
mcp
Provides an MCP interface to MariaDB, enabling standard SQL operations and optional vector/embedding-based search for AI assistants.
boilerplate-mcp-server
Provides a TypeScript boilerplate for developing custom Model Context Protocol (MCP) servers, with an IP geolocation tool as an example.