⚡
MCP_BRIDGER_V2.026
SQL-TO-AGENT CONTEXT PROTOCOL PIPELINE
INPUT_DDL_STREAM
(Strips: password, hash, ssn, secret, etc.)
MCP_JSON_OUTPUT
{
"mcpVersion": "1.0",
"server": {
"name": "local-db-bridger",
"version": "2026.1"
},
"tools": [
{
"name": "query_users",
"description": "Execute a SELECT query on the users table. Columns available: id, username, email, created_at",
"parameters": {
"type": "object",
"properties": {
"sql": {
"type": "string",
"description": "SQL query to execute"
}
},
"required": [
"sql"
]
}
},
{
"name": "query_orders",
"description": "Execute a SELECT query on the orders table. Columns available: id, user_id, amount, status",
"parameters": {
"type": "object",
"properties": {
"sql": {
"type": "string",
"description": "SQL query to execute"
}
},
"required": [
"sql"
]
}
}
],
"resources": [
{
"uri": "db://users/schema",
"name": "users Schema",
"description": "Structure of the users table",
"mimeType": "application/json"
},
{
"uri": "db://orders/schema",
"name": "orders Schema",
"description": "Structure of the orders table",
"mimeType": "application/json"
}
]
}TOOLS_GENERATED
2
RESOURCES_MAPPED
2

