Created
July 11, 2025 08:24
-
-
Save wong2/60a55019e7bc8971cc0d68ee9bd6d252 to your computer and use it in GitHub Desktop.
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
``` | |
vscode:mcp/install?encodeURIComponent(JSON.stringify({ | |
"name": "fetch", | |
"command": "npx", | |
"args": [], | |
})) | |
`` | |
``` | |
cherrystudio://mcp/install?servers={base64Encode(JSON.stringify({ | |
"mcpServers": { | |
"fetch": { | |
"command": "npx", | |
... | |
} | |
} | |
}))} | |
``` | |
``` | |
deepchat://mcp/install?code={base64Encode(JSON.stringify(jsonConfig))} | |
jsonConfig同上 | |
``` | |
``` | |
cursor://anysphere.cursor-deeplink/mcp/install?name=$NAME&config=$BASE64_ENCODED_CONFIG | |
{ | |
"postgres": { | |
"command": "npx", | |
"args": [ | |
"-y", | |
"@modelcontextprotocol/server-postgres", | |
"postgresql://localhost/mydb" | |
] | |
} | |
} | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment