GTech-Context-MCP-Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@GTech-Context-MCP-Serverresolve tables for query: top 10 products by sales this quarter"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
db-kb-mcp-server
A static, read-only MCP server that exposes a database knowledge base (schema, relationships, workflows, and reasoning patterns) so Claude Code / Copilot can reason about a database it has no live connection to.
No DB connection required — the schema is assumed stable, and all content lives in kb/ as Markdown files.
Folder structure
kb/
schema/ one file per table — columns, types, PK/FK, business meaning
relationships/ FK-enforced and logical (non-enforced) relationships, grouped by subsystem
workflows/ one file per customizable workflow — intents, tables touched, invariants
patterns/ reusable reasoning recipes (e.g. reordering ordinal columns)
glossary/ domain term definitions
server/
src/ MCP server implementation (Node + TypeScript, @modelcontextprotocol/sdk)Related MCP server: MCP Database Bridge
Tools exposed
Tool | Purpose |
| Call this first, once per session. Returns hard rules, doc inventory, and what to call next. |
| Preferred per-query context bundle: given the user's request, returns relevant tables + required docs (schema/workflow/relationships/patterns/glossary) and execution order in one response. |
| Call this second, with the user's request verbatim. Fans out across workflows/patterns/relationships/schema and returns a ranked, reasoned list of which tables are actually relevant, plus matching docs and concrete next steps — this is what lets an agent go from "user asked X" to "these are the tables to work on" without guessing table names from general domain knowledge. |
| List all docs, optionally filtered by category |
| Full schema doc for a table |
| FK + logical relationships, optionally filtered to a table |
| Workflow doc: intents, tables touched, invariants |
| Reasoning recipe (e.g. |
| Full-text search across all docs |
| Domain term lookup |
Every doc is also exposed as an MCP resource (kb://<category>/<id>).
Running locally (stdio — simplest, per-user)
npm install
npm run buildBy default, the server auto-loads kb/ from the repository root (resolved relative to server/dist/index.js, not the shell's current working directory). Override with KB_ROOT only when you want to point to another KB folder.
Then add to Claude Code:
claude mcp add db-kb -- node D:/Tasks/GTech_MCPServer/server/dist/index.jsOr set KB_ROOT to point at a KB folder elsewhere:
KB_ROOT=/path/to/kb node server/dist/index.jsIntegration checklist (what users need on their machine)
Local stdio integration
Required on each user machine:
Node.js 18+ (recommended current LTS)
A local copy of:
server/dist/index.js(or full repo + build output)kb/folder (the knowledge base content)
Typical MCP config (example .mcp.json snippet):
{
"mcpServers": {
"db-kb": {
"command": "node",
"args": ["D:\\Tasks\\GTech_MCPServer\\server\\dist\\index.js"]
}
}
}Optional when kb/ lives elsewhere:
{
"mcpServers": {
"db-kb": {
"command": "node",
"args": ["D:\\Tasks\\GTech_MCPServer\\server\\dist\\index.js"],
"env": {
"KB_ROOT": "D:\\MyKb"
}
}
}
}Hosted HTTP integration
Required on user machine:
Only the MCP server URL (no local
kb/copy needed)
Client should use:
transport:
httpURL:
https://<host>:<port>/mcp(include/mcp)
Running as a hosted server (HTTP — pluggable via URL for everyone)
MCP_TRANSPORT=http PORT=8787 npm startDeploy this anywhere (small VM, container, internal server). Then each teammate adds the URL once:
claude mcp add --transport http db-kb https://your-host:8787/mcpNo cloning, no file sync — everyone always gets the current KB content.
The HTTP server keeps one McpServer/transport pair per MCP session (keyed by the mcp-session-id the SDK assigns on initialize), not per HTTP request — sessions span many requests, so a naive "new server per request" implementation breaks the handshake (tools/call fails with "Server not initialized" on the very next request). Verified end-to-end with a manual initialize → notifications/initialized → tools/call sequence over curl.
Updating the knowledge base
Edit/add Markdown files under
kb/.If running the hosted HTTP variant, redeploy/restart the server — it loads
kb/once at startup (schema is assumed static; restart to pick up doc changes).Use
kb/schema/_TEMPLATE.mdas the starting point for new tables.
Live read-only SQL access (Oracle SQLcl MCP Server)
Alongside the static KB server, this project bundles Oracle's official SQLcl (v26.2, downloaded to tools/sqlcl/) running in MCP mode — for verifying live schema/data against the actual Oracle instance. This is a separate, more sensitive server from db-kb: it needs real DB credentials and should not be shared as broadly as the KB server.
One-time setup (per machine, not committed to the repo)
Save a connection using SQLcl's own encrypted connection store. Run
-nologfirst, then type theconnectcommand at the interactive prompt (or pipe it via stdin) — passingconnect ...as command-line arguments gets misparsed as a script filename. Also pass-thin— on Windows, SQLcl defaults to OCI/thick mode and fails withno ocijdbc23 in java.library.pathunless a full Oracle Instant Client is on the path; thin mode needs no native client at all:tools/sqlcl/bin/sql -thin -nolog SQL> connect -save mydb -savepwd myuser/mypassword@myhost:1521/myserviceCredentials are stored locally under
~/.dbtools(SQLcl's own encrypted store) — never commit this directory or put credentials in.mcp.json.Use a read-only DB account for
myuser— grant onlySELECTon the relevant schemas. This is the real enforcement boundary; SQLcl's own restrict levels are a second layer, not a substitute for DB-level permissions.Verify the saved connection actually works:
connect -name mydbthenselect 1 from dual;.
Already wired into .mcp.json
"oracle-sqlcl": { "command": "tools/sqlcl/bin/sql", "args": ["-thin", "-mcp"] }MCP mode defaults to restrict level 4 (most restrictive) unless overridden with -R. It exposes 5 core tools: list-connections, connect, disconnect, run-sql, run-sqlcl. The connect tool only accepts a saved connection name (from step 1 above) — it never accepts raw credentials over MCP, so nothing sensitive passes through the AI session itself.
Auditing
Every session is logged: V$SESSION.MODULE records the MCP client, V$SESSION.ACTION records the calling LLM, and SQLcl creates a DBTOOLS$MCP_LOG table recording every interaction/SQL statement executed — useful for reviewing what was actually run against the live DB.
Division of responsibility with the KB server
db-kb(this repo'sserver/) — static schema/workflow knowledge, safe to share broadly, no DB connection.oracle-sqlcl— live queries against the real instance, needs a read-only DB account, keep access scoped to people authorized to query production/test data.
Adding a new workflow doc
Copy the structure in kb/workflows/approval-chain-workflow.md:
List common user intents mapped to concrete table/column changes.
List invariants that must hold after any change.
Link to relevant schema docs and reasoning patterns with
[[slug]](informal — for human navigation; the tools don't resolve these automatically yet).
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Venkatesh-Jyothula/GTech-Context-MCP-Server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server