Spaces:
Build error
Build error
Update astral-sh/ruff-action action to v3.6.0
Browse files- .github/workflows/.lint.yaml +1 -1
- mcp.json +40 -0
.github/workflows/.lint.yaml
CHANGED
|
@@ -141,7 +141,7 @@ jobs:
|
|
| 141 |
with:
|
| 142 |
token: ${{ secrets.GH_TOKEN }}
|
| 143 |
- name: ${{ matrix.command }}
|
| 144 |
-
uses: astral-sh/ruff-action@
|
| 145 |
with:
|
| 146 |
args: >-
|
| 147 |
${{ matrix.command }} --config .github/lint/.ruff.toml
|
|
|
|
| 141 |
with:
|
| 142 |
token: ${{ secrets.GH_TOKEN }}
|
| 143 |
- name: ${{ matrix.command }}
|
| 144 |
+
uses: astral-sh/ruff-action@aedff8d295e5eafdfcc21db7dfdce8cab2c55e7b # v3.6.0
|
| 145 |
with:
|
| 146 |
args: >-
|
| 147 |
${{ matrix.command }} --config .github/lint/.ruff.toml
|
mcp.json
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"mcp_servers": [
|
| 3 |
+
{
|
| 4 |
+
"args": [
|
| 5 |
+
"run",
|
| 6 |
+
"-i",
|
| 7 |
+
"--rm",
|
| 8 |
+
"mcp/time"
|
| 9 |
+
],
|
| 10 |
+
"command": "docker",
|
| 11 |
+
"name": "time",
|
| 12 |
+
"transport": "stdio",
|
| 13 |
+
"type": "command"
|
| 14 |
+
},
|
| 15 |
+
{
|
| 16 |
+
"args": [
|
| 17 |
+
"run",
|
| 18 |
+
"-i",
|
| 19 |
+
"--rm",
|
| 20 |
+
"mcp/sequentialthinking"
|
| 21 |
+
],
|
| 22 |
+
"command": "docker",
|
| 23 |
+
"name": "sequential_thinking",
|
| 24 |
+
"transport": "stdio",
|
| 25 |
+
"type": "command"
|
| 26 |
+
},
|
| 27 |
+
{
|
| 28 |
+
"name": "voice_generator",
|
| 29 |
+
"transport": "streamable-http",
|
| 30 |
+
"type": "url",
|
| 31 |
+
"url": "http://localhost:7861/gradio_api/mcp"
|
| 32 |
+
},
|
| 33 |
+
{
|
| 34 |
+
"name": "video_generator",
|
| 35 |
+
"transport": "streamable-http",
|
| 36 |
+
"type": "url",
|
| 37 |
+
"url": "http://localhost:7862/gradio_api/mcp/?tools=generate_video_mcp"
|
| 38 |
+
}
|
| 39 |
+
]
|
| 40 |
+
}
|