"""
════════════════════════════════════════════════════════════════════════════════
MCP Dummy DB Integration and Data Retrieval POC
A secure, production-ready implementation of the Model Context Protocol (MCP)
as a connector layer between AI agents and PostgreSQL databases.
════════════════════════════════════════════════════════════════════════════════
Author: Muniasamy K
Created: January 2026
License: MIT
Project Metadata
════════════════════════════════════════════════════════════════════════════════
"""
__author__ = "Muniasamy K"
__version__ = "1.0.0"
__license__ = "MIT"
__created__ = "2026-01-24"
__description__ = "MCP Dummy DB Integration and Data Retrieval POC"
__keywords__ = [
"MCP",
"Model Context Protocol",
"LLM",
"Database",
"Security",
"PostgreSQL",
"Agent",
"Agentic Workflow"
]
# Project configuration
CONFIG = {
"author": __author__,
"version": __version__,
"license": __license__,
"created": __created__,
"description": __description__
}