René's URL Explorer Experiment


Title: mcp: server modes, elicitation gating, audit subsystem (PR2) by jeffreyaven · Pull Request #652 · stackql/stackql · GitHub

Open Graph Title: mcp: server modes, elicitation gating, audit subsystem (PR2) by jeffreyaven · Pull Request #652 · stackql/stackql

X Title: mcp: server modes, elicitation gating, audit subsystem (PR2) by jeffreyaven · Pull Request #652 · stackql/stackql

Description: Summary PR2 of the two-PR MCP server series. PR1 trimmed the tool surface to 11 + 1 prompt and shipped a single read_only: true/false flag. PR2 replaces that flag with a four-mode safety contract, wires MCP elicitation for approval-required modes, and adds an audit subsystem. Four server modes replacing IsReadOnly: read_only, safe (new default), delete_safe, full_access. Verb-classified gate (SELECT / INSERT|UPDATE|REPLACE|MERGE|UPSERT / DELETE / EXEC) decides allow / refuse / needs-approval per mode. Elicitation flow for needs-approval modes: server sends elicitation/create if the client advertised the capability; otherwise refuses with a message pointing at full_access. Audit subsystem writing JSONL via a Sink interface; file sink ships with lumberjack rotation. Audit is on by default. Three failure_mode options: strict (default), strict_mutations, best_effort. Gate middleware is the single chokepoint: classify → decide → (refuse / elicit / allow) → handler → audit. Replaces PR1's per-handler isReadOnlyConfig checks. server_info exposes mode (new) and is_read_only (back-compat: true iff mode == "read_only"). Legacy back-compat: read_only: true JSON/YAML key still parses and maps to mode: read_only. When both are set, mode wins. Breaking changes Default behaviour shift. PR1 default = "no enforcement; mutations proceed." PR2 default = mode: safe = "mutations require user approval." Operators running the bundled client (which does not advertise elicitation) or any non-elicitation automation must explicitly opt into mode: full_access. Audit on by default. PR1 logged nothing. PR2 writes JSONL to ./stackql_mcp_server_.log by default. To preserve PR1 behaviour set "audit": {"disabled": true} in mcp.config. Config.Server.IsReadOnly *bool removed in favour of Config.Server.Mode string. Legacy wire form preserved. Backend constructors (NewStackqlMCPBackendService, NewStackqlMCPReverseProxyService) no longer take isReadOnly bool - the value is derived from the mode string carried by serverBuildInfo. Architectural invariant pkg/mcp_server/... still imports zero symbols from internal/... or any-sdk. Verified by grep. The new policy and audit packages are pure: primitive types only, no SDK or internal dependencies. The serverBuildInfo data carrier in internal/stackql/mcpbackend remains an unexported interface backed by an unexported struct with constructor-only mutation, per the AGENTS.md data-carrier rule. What landed New packages pkg/mcp_server/policy/ - QueryClass, ClassifyQuery, Decision, GateDecision, mode string constants. Pure functions. pkg/mcp_server/audit/ - Event (flat, primitive-typed DTO), Sink interface, NopSink, NewFileSink (lumberjack-backed, fsync per record, 0600 file perms). New / changed files pkg/mcp_server/gate.go - new middleware that wraps every tool registration with classify / decide / elicit / audit. pkg/mcp_server/server.go - all 11 tools wrapped via addToolWithGate; init audit sink at server start; close it at shutdown. pkg/mcp_server/config.go - Mode + AuditConfig fields; legacy read_only shim via custom UnmarshalJSON/UnmarshalYAML; Validate() rejects unknown modes + failure_modes. pkg/mcp_server/dto/dto.go - Mode added to ServerInfoOutput and ServerInfoDTO; ReadOnly retained for back-compat. internal/stackql/mcpbackend/mcp_service_stackql.go, .../mcp_reverse_proxy_backend_service.go - constructors take a mode string via serverBuildInfo; ServerInfo() returns Mode and derives ReadOnly. internal/stackql/cmd/mcp.go - reads mode from config (cfg.GetMode()), threads through NewServerBuildInfo. docs/mcp.md - new Server modes section, new Audit log section, updated examples and breaking-change notes. pkg/mcp_server/README.md - mirrors the docs/mcp.md update with package-developer framing. test/robot/functional/mcp.robot - four new MCP servers (9920 read_only, 9921 delete_safe, 9922 full_access, 9923 audit-enabled); five new mode-contract scenarios; two audit scenarios; existing servers pinned to mode: full_access + audit.disabled: true so PR1 scenarios keep passing. Go module Added gopkg.in/natefinch/lumberjack.v2 for log rotation. Test plan go build ./... clean. go vet ./... clean. golangci-lint run ./pkg/mcp_server/... ./internal/stackql/mcpbackend/... ./internal/stackql/cmd/... → 0 issues. go test --tags sqlite_stackql -count=1 ./... → all packages pass. New unit tests pkg/mcp_server/policy/policy_test.go - 6 tests covering classification of every verb and gate decision for every (mode, class) combination including empty / unknown. pkg/mcp_server/audit/file_test.go - JSONL round-trip, default-path generation in cwd, fail-fast on unwritable dir, nop sink. pkg/mcp_server/tools_test.go extensions: TestMode_ReadOnly_RefusesAllMutationsAndLifecycle TestMode_Safe_RefusesMutationsWithoutElicitation TestMode_DeleteSafe_AllowsCreateRefusesDeleteAndLifecycle TestMode_FullAccess_AllowsEverything TestMode_Safe_ElicitationAcceptProceeds (uses ClientOptions.ElicitationHandler) TestMode_Safe_ElicitationDeclineRefuses TestMode_Safe_ElicitationCancelRefuses TestMode_DeleteSafe_ElicitationAcceptAllowsDelete TestServerInfo_SurfacesMode TestAudit_RecordsAllToolCalls (end-to-end: in-process server → temp audit file → JSONL parse) pkg/mcp_server/config_legacy_test.go - 8 tests covering legacy shim mapping, mode-wins-over-legacy, read_only: false doesn't force a mode, unknown-mode rejected, audit.disabled parsing, failure_mode validation, empty-mode defaults to safe. Robot scenarios added MCP HTTP Mode Read Only Refuses Mutations And Lifecycle (9920) MCP HTTP Mode Safe Refuses Mutations Without Elicitation (asserts the no-elicitation fallback) MCP HTTP Mode Delete Safe Allows Create Refuses Delete And Lifecycle (9921) MCP HTTP Mode Full Access Allows Everything (9922) MCP HTTP Audit Basic Records Tool Calls (9923 with known path) MCP HTTP Audit Disabled Writes No File Existing MCP HTTP Server Info Includes Version extended to assert the mode key. Existing MCP HTTPS Run Mutation Refused In Read Only updated to assert read_only (underscore) - exercises the legacy shim on the 9916 server which still uses the read_only: true wire form. Robot suite run locally / in CI Out of scope (deferred) An elicitation-capable MCP test client. Robot scenarios cover the no-elicitation fallback path only; the elicitation-positive path is covered by Go unit tests via ClientOptions.ElicitationHandler and verified manually with elicitation-capable clients (Claude Desktop, Cursor, etc). Sinks other than file (Kafka, RDBMS, KV). The Sink interface admits them as future additions. Per-tool mode overrides. Mode is global per server. 🤖 Generated with Claude Code

Open Graph Description: Summary PR2 of the two-PR MCP server series. PR1 trimmed the tool surface to 11 + 1 prompt and shipped a single read_only: true/false flag. PR2 replaces that flag with a four-mode safety contract...

X Description: Summary PR2 of the two-PR MCP server series. PR1 trimmed the tool surface to 11 + 1 prompt and shipped a single read_only: true/false flag. PR2 replaces that flag with a four-mode safety contract...

Opengraph URL: https://github.com/stackql/stackql/pull/652

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:cb2d994c-d96c-57fe-ffce-bbd069fd734e
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-idE81E:218868:BA6134:FC4D14:6A4D77F7
html-safe-nonce40d959dcd092ed6ad6b196ad1cb3108b606f4a688304b2dbb0087f59ad7a7dd9
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJFODFFOjIxODg2ODpCQTYxMzQ6RkM0RDE0OjZBNEQ3N0Y3IiwidmlzaXRvcl9pZCI6IjUyODYxOTI5MzAxOTI0NTU2NzEiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac6bf731a0126557dc519c951fe9c73feb95d09d2382c9ce2881ae6977184431c1
hovercard-subject-tagpull_request:3693992124
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/files
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/stackql/stackql/pull/652/files
twitter:imagehttps://avatars.githubusercontent.com/u/5146499?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/u/5146499?s=400&v=4
og:image:altSummary PR2 of the two-PR MCP server series. PR1 trimmed the tool surface to 11 + 1 prompt and shipped a single read_only: true/false flag. PR2 replaces that flag with a four-mode safety contract...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
None7f8e15305e2ab58890ca84b830615e375f5df303cf471cafcba0c08272981be3
turbo-cache-controlno-preview
diff-viewunified
go-importgithub.com/stackql/stackql git https://github.com/stackql/stackql.git
octolytics-dimension-user_id95105302
octolytics-dimension-user_loginstackql
octolytics-dimension-repository_id443987542
octolytics-dimension-repository_nwostackql/stackql
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id443987542
octolytics-dimension-repository_network_root_nwostackql/stackql
turbo-body-classeslogged-out env-production page-responsive full-width
disable-turbotrue
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release8608b0750fc35e283e5ec5b094bff942d7a0e197
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/stackql/stackql/pull/652/files#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fstackql%2Fstackql%2Fpull%2F652%2Ffiles
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fstackql%2Fstackql%2Fpull%2F652%2Ffiles
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fpull_requests%2Fshow%2Ffiles&source=header-repo&source_repo=stackql%2Fstackql
Reloadhttps://github.com/stackql/stackql/pull/652/files
Reloadhttps://github.com/stackql/stackql/pull/652/files
Reloadhttps://github.com/stackql/stackql/pull/652/files
Please reload this pagehttps://github.com/stackql/stackql/pull/652/files
stackql https://github.com/stackql
stackqlhttps://github.com/stackql/stackql
Please reload this pagehttps://github.com/stackql/stackql/pull/652/files
Notifications https://github.com/login?return_to=%2Fstackql%2Fstackql
Fork 80 https://github.com/login?return_to=%2Fstackql%2Fstackql
Star 861 https://github.com/login?return_to=%2Fstackql%2Fstackql
Code https://github.com/stackql/stackql
Issues 101 https://github.com/stackql/stackql/issues
Pull requests 1 https://github.com/stackql/stackql/pulls
Discussions https://github.com/stackql/stackql/discussions
Actions https://github.com/stackql/stackql/actions
Projects https://github.com/stackql/stackql/projects
Wiki https://github.com/stackql/stackql/wiki
Security and quality 0 https://github.com/stackql/stackql/security
Insights https://github.com/stackql/stackql/pulse
Code https://github.com/stackql/stackql
Issues https://github.com/stackql/stackql/issues
Pull requests https://github.com/stackql/stackql/pulls
Discussions https://github.com/stackql/stackql/discussions
Actions https://github.com/stackql/stackql/actions
Projects https://github.com/stackql/stackql/projects
Wiki https://github.com/stackql/stackql/wiki
Security and quality https://github.com/stackql/stackql/security
Insights https://github.com/stackql/stackql/pulse
Sign up for GitHub https://github.com/signup?return_to=%2Fstackql%2Fstackql%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://github.com/login?return_to=%2Fstackql%2Fstackql%2Fissues%2Fnew%2Fchoose
jeffreyavenhttps://github.com/jeffreyaven
mainhttps://github.com/stackql/stackql/tree/main
feature/mcp-pr2https://github.com/stackql/stackql/tree/feature/mcp-pr2
Conversation 5 https://github.com/stackql/stackql/pull/652
Commits 5 https://github.com/stackql/stackql/pull/652/commits
Checks 20 https://github.com/stackql/stackql/pull/652/checks
Files changed https://github.com/stackql/stackql/pull/652/files
Please reload this pagehttps://github.com/stackql/stackql/pull/652/files
mcp: server modes, elicitation gating, audit subsystem (PR2) https://github.com/stackql/stackql/pull/652/files#top
Show all changes 5 commits https://github.com/stackql/stackql/pull/652/files
ce02e32 mcp: server modes, elicitation gating, audit subsystem (PR2) jeffreyaven May 16, 2026 https://github.com/stackql/stackql/pull/652/commits/ce02e327edc11aee5fdd373d66d58eb9427ca5a0
7956ad3 robot: use canonical mocked SQL in new mode-contract scenarios jeffreyaven May 16, 2026 https://github.com/stackql/stackql/pull/652/commits/7956ad32ff3724022d17db9f70b34c59f9325445
d90318c robot: fix Windows audit-path failure; preflight 9923 reachability jeffreyaven May 16, 2026 https://github.com/stackql/stackql/pull/652/commits/d90318c4fe5f680e5413c48eb0b53109030a3455
568289d review updates jeffreyaven May 17, 2026 https://github.com/stackql/stackql/pull/652/commits/568289dd745eb61454d13c3bdf38165a5e24fb0c
84b986b updates jeffreyaven May 17, 2026 https://github.com/stackql/stackql/pull/652/commits/84b986bebf321b17fb390124afd4da54d8be50bf
Clear filters https://github.com/stackql/stackql/pull/652/files
Please reload this pagehttps://github.com/stackql/stackql/pull/652/files
Please reload this pagehttps://github.com/stackql/stackql/pull/652/files
.gitignore https://github.com/stackql/stackql/pull/652/files#diff-bc37d034bad564583790a46f19d807abfe519c5671395fd494d8cce506c42947
mcp.md https://github.com/stackql/stackql/pull/652/files#diff-540fac6ea007bc938b77f99fe1f0766cf1ab7628ffed1d2830327fb2dab88c28
go.mod https://github.com/stackql/stackql/pull/652/files#diff-33ef32bf6c23acb95f5902d7097b7a1d5128ca061167ec0716715b0b9eeaa5f6
go.sum https://github.com/stackql/stackql/pull/652/files#diff-3295df7234525439d778f1b282d146a4f1ff6b415248aaac074e8042d9f42d63
mcp.go https://github.com/stackql/stackql/pull/652/files#diff-2921de337fccdae3def1afbee1d29c2193a31782c66b993a3925b6d5a5be8c01
mcp_reverse_proxy_backend_service.go https://github.com/stackql/stackql/pull/652/files#diff-5a32bbb64b980d48064d313fc9047728ce9cbfbf4c35edc016fd14716a6aa2bd
mcp_service_stackql.go https://github.com/stackql/stackql/pull/652/files#diff-d8b768b1b0fd5c6ef2089c41bb124ee1234a3e5a89d493b21d248a96de4c99b3
README.md https://github.com/stackql/stackql/pull/652/files#diff-61cd6f168d79b31098a3807326a3a18dda7a45263ac42d7c31cd92a27fee1e05
audit.go https://github.com/stackql/stackql/pull/652/files#diff-959207eb33cffb0c4deff92d9a8ffb9bed76a5f4c317f9b01f88b1fd5a204714
config.go https://github.com/stackql/stackql/pull/652/files#diff-1581ed4e9102dc1ac3660ed35cdc98b034052fa0b4a59f7f7e249333ceaa9c70
config_legacy_test.go https://github.com/stackql/stackql/pull/652/files#diff-faed1cc0726320675e0625fdfaafc643c056e910c355f2a0d7cd1fbccf177c71
dto.go https://github.com/stackql/stackql/pull/652/files#diff-0338927102fc99126014f679600648e7c4406bf2884b476f8328763be4673529
gate.go https://github.com/stackql/stackql/pull/652/files#diff-b5a222283e78538756973be27c94c9bd7f4684b3645c91dac049ec31b66d275a
policy.go https://github.com/stackql/stackql/pull/652/files#diff-a836dca85553b1d7ddef4f19a00ff10a083f1230c9ada460bba0088343ec2802
policy_test.go https://github.com/stackql/stackql/pull/652/files#diff-648650c82842b58be78ffd413808f8beb368d4ff87308062c16fd6f5a8fbbb4e
server.go https://github.com/stackql/stackql/pull/652/files#diff-5198b2eb38eb4d1d8d6e7d26d30d2a0572c359a00eca55b13ce8150b55695df5
tools_test.go https://github.com/stackql/stackql/pull/652/files#diff-43a516713c37d5106093b5f33257daf24c88e6cab6254415533907da6b1c59c1
file.go https://github.com/stackql/stackql/pull/652/files#diff-cfad22c1d2399f448ac9562db2ffbf972ae7302fbb6966c0a22563304db89f85
file_test.go https://github.com/stackql/stackql/pull/652/files#diff-13557c46ad55a7f8e21073fb6b433a1854f86e5d66a84eba16c49e13a5c02681
sink.go https://github.com/stackql/stackql/pull/652/files#diff-040df62660d4581f9d1f6c27bebee01870d8b7b0cda5c21803369f5a55106e09
mcp.robot https://github.com/stackql/stackql/pull/652/files#diff-2cc5a287ed1a1615d4a2b31ed80344918bbc9217d8560db7a82ed4664a535591
.gitignorehttps://github.com/stackql/stackql/pull/652/files#diff-bc37d034bad564583790a46f19d807abfe519c5671395fd494d8cce506c42947
View file https://github.com/stackql/stackql/blob/84b986bebf321b17fb390124afd4da54d8be50bf/.gitignore
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/stackql/stackql/pull/652/{{ revealButtonHref }}
https://github.com/stackql/stackql/pull/652/files#diff-bc37d034bad564583790a46f19d807abfe519c5671395fd494d8cce506c42947
docs/mcp.mdhttps://github.com/stackql/stackql/pull/652/files#diff-540fac6ea007bc938b77f99fe1f0766cf1ab7628ffed1d2830327fb2dab88c28
View file https://github.com/stackql/stackql/blob/84b986bebf321b17fb390124afd4da54d8be50bf/docs/mcp.md
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/stackql/stackql/pull/652/{{ revealButtonHref }}
https://github.com/stackql/stackql/pull/652/files#diff-540fac6ea007bc938b77f99fe1f0766cf1ab7628ffed1d2830327fb2dab88c28
https://github.com/stackql/stackql/pull/652/files#diff-540fac6ea007bc938b77f99fe1f0766cf1ab7628ffed1d2830327fb2dab88c28
https://github.com/stackql/stackql/pull/652/files#diff-540fac6ea007bc938b77f99fe1f0766cf1ab7628ffed1d2830327fb2dab88c28
https://github.com/stackql/stackql/pull/652/files#diff-540fac6ea007bc938b77f99fe1f0766cf1ab7628ffed1d2830327fb2dab88c28
https://github.com/stackql/stackql/pull/652/files#diff-540fac6ea007bc938b77f99fe1f0766cf1ab7628ffed1d2830327fb2dab88c28
https://github.com/stackql/stackql/pull/652/files#diff-540fac6ea007bc938b77f99fe1f0766cf1ab7628ffed1d2830327fb2dab88c28
https://github.com/stackql/stackql/pull/652/files#diff-540fac6ea007bc938b77f99fe1f0766cf1ab7628ffed1d2830327fb2dab88c28
https://github.com/stackql/stackql/pull/652/files#diff-540fac6ea007bc938b77f99fe1f0766cf1ab7628ffed1d2830327fb2dab88c28
https://github.com/stackql/stackql/pull/652/files#diff-540fac6ea007bc938b77f99fe1f0766cf1ab7628ffed1d2830327fb2dab88c28
https://github.com/stackql/stackql/pull/652/files#diff-540fac6ea007bc938b77f99fe1f0766cf1ab7628ffed1d2830327fb2dab88c28
go.modhttps://github.com/stackql/stackql/pull/652/files#diff-33ef32bf6c23acb95f5902d7097b7a1d5128ca061167ec0716715b0b9eeaa5f6
View file https://github.com/stackql/stackql/blob/84b986bebf321b17fb390124afd4da54d8be50bf/go.mod
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/stackql/stackql/pull/652/{{ revealButtonHref }}
https://github.com/stackql/stackql/pull/652/files#diff-33ef32bf6c23acb95f5902d7097b7a1d5128ca061167ec0716715b0b9eeaa5f6
https://github.com/stackql/stackql/pull/652/files#diff-33ef32bf6c23acb95f5902d7097b7a1d5128ca061167ec0716715b0b9eeaa5f6
go.sumhttps://github.com/stackql/stackql/pull/652/files#diff-3295df7234525439d778f1b282d146a4f1ff6b415248aaac074e8042d9f42d63
View file https://github.com/stackql/stackql/blob/84b986bebf321b17fb390124afd4da54d8be50bf/go.sum
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/stackql/stackql/pull/652/{{ revealButtonHref }}
https://github.com/stackql/stackql/pull/652/files#diff-3295df7234525439d778f1b282d146a4f1ff6b415248aaac074e8042d9f42d63
https://github.com/stackql/stackql/pull/652/files#diff-3295df7234525439d778f1b282d146a4f1ff6b415248aaac074e8042d9f42d63
internal/stackql/cmd/mcp.gohttps://github.com/stackql/stackql/pull/652/files#diff-2921de337fccdae3def1afbee1d29c2193a31782c66b993a3925b6d5a5be8c01
View file https://github.com/stackql/stackql/blob/84b986bebf321b17fb390124afd4da54d8be50bf/internal/stackql/cmd/mcp.go
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/stackql/stackql/pull/652/{{ revealButtonHref }}
https://github.com/stackql/stackql/pull/652/files#diff-2921de337fccdae3def1afbee1d29c2193a31782c66b993a3925b6d5a5be8c01
https://github.com/stackql/stackql/pull/652/files#diff-2921de337fccdae3def1afbee1d29c2193a31782c66b993a3925b6d5a5be8c01
https://github.com/stackql/stackql/pull/652/files#diff-2921de337fccdae3def1afbee1d29c2193a31782c66b993a3925b6d5a5be8c01
https://github.com/stackql/stackql/pull/652/files#diff-2921de337fccdae3def1afbee1d29c2193a31782c66b993a3925b6d5a5be8c01
internal/stackql/mcpbackend/mcp_reverse_proxy_backend_service.gohttps://github.com/stackql/stackql/pull/652/files#diff-5a32bbb64b980d48064d313fc9047728ce9cbfbf4c35edc016fd14716a6aa2bd
View file https://github.com/stackql/stackql/blob/84b986bebf321b17fb390124afd4da54d8be50bf/internal/stackql/mcpbackend/mcp_reverse_proxy_backend_service.go
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/stackql/stackql/pull/652/{{ revealButtonHref }}
https://github.com/stackql/stackql/pull/652/files#diff-5a32bbb64b980d48064d313fc9047728ce9cbfbf4c35edc016fd14716a6aa2bd
https://github.com/stackql/stackql/pull/652/files#diff-5a32bbb64b980d48064d313fc9047728ce9cbfbf4c35edc016fd14716a6aa2bd
https://github.com/stackql/stackql/pull/652/files#diff-5a32bbb64b980d48064d313fc9047728ce9cbfbf4c35edc016fd14716a6aa2bd
https://github.com/stackql/stackql/pull/652/files#diff-5a32bbb64b980d48064d313fc9047728ce9cbfbf4c35edc016fd14716a6aa2bd
https://github.com/stackql/stackql/pull/652/files#diff-5a32bbb64b980d48064d313fc9047728ce9cbfbf4c35edc016fd14716a6aa2bd
https://github.com/stackql/stackql/pull/652/files#diff-5a32bbb64b980d48064d313fc9047728ce9cbfbf4c35edc016fd14716a6aa2bd
Please reload this pagehttps://github.com/stackql/stackql/pull/652/files
Please reload this pagehttps://github.com/stackql/stackql/pull/652/files
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.