-
-
Notifications
You must be signed in to change notification settings - Fork 181
feat(mcp): 实现 MCP 透传功能 #157
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
ding113
merged 15 commits into
ding113:feat/mcp-passthrough
from
flintttan:feature/mcp-passthrough
Nov 23, 2025
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
37d8665
feat(mcp): 实现 MCP 透传功能
flintttan 3af58b6
Merge branch 'ding113:main' into feature/mcp-passthrough
flintttan e9a0c1f
chore: format code (feature-mcp-passthrough-3af58b6)
github-actions[bot] 2fe8c96
feat(mcp): 支持 GLM MCP 透传功能及多语言配置
flintttan 5365e1d
Merge branch 'feature/mcp-passthrough' with GLM MCP support
flintttan 8d59f3a
chore: format code (feature-mcp-passthrough-5365e1d)
github-actions[bot] 4553d5a
Fix: Address PR review comments
flintttan 206eff1
Merge upstream/dev and resolve conflicts (rename migration to 0024)
flintttan f54e9b3
chore: fix lint warnings
flintttan ef35782
Merge branch 'feature/mcp-passthrough' of github.com:flintttan/claude…
flintttan 8a1c899
chore: format code (feature-mcp-passthrough-ef35782)
github-actions[bot] 19b3d49
Merge remote-tracking branch 'upstream/dev' into feature/mcp-passthrough
flintttan 417b9eb
Merge branch 'feature/mcp-passthrough' of github.com:flintttan/claude…
flintttan 229f447
fix: enhance MCP passthrough with security and stability improvements
flintttan 4ff7a5c
chore: format code (feature-mcp-passthrough-229f447)
github-actions[bot] File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| ALTER TABLE "providers" ADD COLUMN "mcp_passthrough_type" varchar(20) DEFAULT 'none' NOT NULL;--> statement-breakpoint | ||
| ALTER TABLE "providers" ADD COLUMN "mcp_passthrough_url" varchar(512); | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🟡 Medium: Missing newline at end of file Why this is a problem: SQL files should end with a newline character per POSIX standard. While not critical, this can cause issues with some tools and version control systems. Suggested fix: Add a newline character at the end of the file. |
||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔴 Critical: SQL Migration Missing Newline
Why this is a problem: The SQL migration file does not end with a newline character, which violates POSIX standards and can cause issues with version control systems and some SQL tools.
Suggested fix: Add a newline at the end of the file.