Skip to content

Commit 0ed2ec6

Browse files
author
William Weishuhn
committed
Check multiple reference MCP servers
1 parent d8b3e20 commit 0ed2ec6

3 files changed

Lines changed: 24 additions & 3 deletions

File tree

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"targetId": "mcp-server",
2+
"targetId": "everything",
33
"adapter": "local-process",
44
"command": "npx",
55
"args": [
@@ -8,6 +8,6 @@
88
],
99
"timeoutMs": 15000,
1010
"metadata": {
11-
"observatory": "generated-by-init-ci"
11+
"observatory": "certification-pr"
1212
}
1313
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"targetId": "sequential-thinking",
3+
"adapter": "local-process",
4+
"command": "npx",
5+
"args": [
6+
"-y",
7+
"@modelcontextprotocol/server-sequential-thinking@latest"
8+
],
9+
"timeoutMs": 30000,
10+
"metadata": {
11+
"observatory": "certification-pr"
12+
}
13+
}

.github/workflows/mcp-observatory.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,19 @@ jobs:
99
mcp-observatory:
1010
runs-on: ubuntu-latest
1111
timeout-minutes: 5
12+
strategy:
13+
fail-fast: false
14+
matrix:
15+
include:
16+
- name: everything
17+
target: .github/mcp-observatory/everything.target.json
18+
- name: sequential-thinking
19+
target: .github/mcp-observatory/sequential-thinking.target.json
1220
steps:
1321
- uses: actions/checkout@v4
1422
- uses: KryptosAI/mcp-observatory/action@main
1523
with:
16-
target: mcp-observatory.target.json
24+
target: ${{ matrix.target }}
1725
deep: true
1826
security: true
1927
comment-on-pr: true

0 commit comments

Comments
 (0)