Skip to content

Commit d1181fa

Browse files
JAORMXclaude
andcommitted
fix: add insecure_ignore for MCP servers requiring credentials
These servers require API keys or external services to start and cannot be scanned in CI without those credentials: - agentql-mcp: requires AGENTQL_API_KEY - mcp-jetbrains: requires running JetBrains IDE - mcp-neo4j-aura-manager: requires Neo4j Aura credentials - mcp-server-box: requires Box API credentials - netbird: requires Netbird management API token - tavily-mcp: requires TAVILY_API_KEY Co-Authored-By: Claude Opus 4.5 <[email protected]>
1 parent 23cb132 commit d1181fa

File tree

6 files changed

+30
-0
lines changed

6 files changed

+30
-0
lines changed

go/netbird/spec.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,8 @@ spec:
1616
provenance:
1717
repository_uri: "https://github.com/aantti/mcp-netbird?tab=readme-ov-file"
1818
repository_ref: "refs/heads/main"
19+
20+
# Security configuration
21+
security:
22+
# Server requires Netbird management API token to start - cannot be scanned in CI
23+
insecure_ignore: true

npx/agentql-mcp/spec.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,8 @@ spec:
1616
provenance:
1717
repository_uri: "https://github.com/tinyfish-io/agentql-mcp"
1818
repository_ref: "refs/heads/main"
19+
20+
# Security configuration
21+
security:
22+
# Server requires AGENTQL_API_KEY to start - cannot be scanned in CI
23+
insecure_ignore: true

npx/mcp-jetbrains/spec.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,8 @@ spec:
1616
provenance:
1717
repository_uri: "https://github.com/JetBrains/mcp-jetbrains"
1818
repository_ref: "refs/heads/main"
19+
20+
# Security configuration
21+
security:
22+
# Server is a proxy that requires a running JetBrains IDE to connect to - cannot be scanned in CI
23+
insecure_ignore: true

npx/tavily-mcp/spec.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,8 @@ spec:
1616
provenance:
1717
repository_uri: "https://github.com/tavily-ai/tavily-mcp"
1818
repository_ref: "refs/heads/main"
19+
20+
# Security configuration
21+
security:
22+
# Server requires TAVILY_API_KEY to start - cannot be scanned in CI
23+
insecure_ignore: true

uvx/mcp-neo4j-aura-manager/spec.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,8 @@ spec:
1616
provenance:
1717
repository_uri: "https://github.com/neo4j-contrib/mcp-neo4j"
1818
repository_ref: "refs/tags/mcp-neo4j-aura-manager-v0.3.0"
19+
20+
# Security configuration
21+
security:
22+
# Server requires Neo4j Aura API credentials to start - cannot be scanned in CI
23+
insecure_ignore: true

uvx/mcp-server-box/spec.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,8 @@ spec:
1616
provenance:
1717
repository_uri: "https://github.com/box-community/mcp-server-box"
1818
repository_ref: "refs/heads/main" # Using main branch as the primary development branch
19+
20+
# Security configuration
21+
security:
22+
# Server requires Box API credentials to start - cannot be scanned in CI
23+
insecure_ignore: true

0 commit comments

Comments
 (0)