-
Notifications
You must be signed in to change notification settings - Fork 340
Two new tools: copy doc and insert template variables + support for service account credentials #60
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
base: main
Are you sure you want to change the base?
Changes from 2 commits
2a5167a
0ca973a
0925bac
c2ac2df
ef0bbd7
d1dbeea
f7745ad
81e46ff
9aac686
05627f9
4caf224
59a78d6
e91fe38
c4160c7
9092a53
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| { | ||
| "version": "0.2.0", | ||
| "configurations": [ | ||
| { | ||
| "name": "Run in Debug Mode", | ||
taylorwilsdon marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| "type": "debugpy", | ||
| "request": "launch", | ||
| "program": "${workspaceFolder}/main.py", | ||
| "args": [ | ||
| "--transport", | ||
| "streamable-http", | ||
| "--tools", | ||
| "docs", | ||
| "--single-user" | ||
| ], | ||
| "env": { | ||
| "WORKSPACE_MCP_PORT": "8056" | ||
| }, | ||
| "justMyCode": false, | ||
| "console": "integratedTerminal" | ||
| } | ||
| ] | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| { | ||
| "servers": { | ||
| "google_workspace": { | ||
| "type": "stdio", | ||
| "command": "cmd", | ||
| "args": ["/c", "cd", "google_workspace_mcp", "&&", "uv", "run", "main.py", "--single-user", "--tools", "docs"] | ||
|
||
| } | ||
| } | ||
| } | ||
Uh oh!
There was an error while loading. Please reload this page.