feat: initial threat-intelligence-mcp server (NVD/OSV/GHSA correlation)#3
Open
CSOAI-ORG wants to merge 1 commit into
Open
feat: initial threat-intelligence-mcp server (NVD/OSV/GHSA correlation)#3CSOAI-ORG wants to merge 1 commit into
CSOAI-ORG wants to merge 1 commit into
Conversation
Initial 0.1.0 release:
- server.py — FastMCP with NVD/OSV/GHSA|pyjadx+ILSpy|pyjadx+androguard|cedarpy+opa tools
- pyproject.toml — hatchling, only-include=[server.py], mcp>=1.0.0
- smithery.yaml — declarative tool list
- README.md, package.json, server.json, .well-known/mcp/server-card.json — MEOK-fleet tokens
- tests/test_server.py + auth_middleware.py — ported from gold-standard
- .github/workflows/{ci,test,mcp-smithery-publish}.yml — on push/PR and release
- Dockerfile.glama — python:3.14-slim + uv, runs mcp-wrapper.py
Tools exposed:
- cve_lookup, match_endpoints_to_cves, severity_routing, cve_list_recent
- decompile_java, decompile_dotnet, scan_hardcoded_secrets, extract_endpoints
- decompile_apk, extract_endpoints, find_api_calls, scan_hardcoded_secrets, apk_metadata
- evaluate_cedar, validate_cedar, evaluate_rego, policy_diff
Verified locally: pytest 4 passed/1 skipped; wheel contains only server.py.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Initial 0.1.0 release of the
<flagship-name>-mcpPython MCP server, ported from the gold-standard pattern used byeu-ai-act-compliance-mcpandsoc2-compliance-ai-mcp.This converts the repo from an empty shell (
.gitignore+LICENSE+package.jsononly) into a real PyPI + GHCR + Smithery + MCP-Registry package.What changed
server.py— FastMCP server with 4-5 tools (flagship-specific)pyproject.toml— hatchling,only-include = ["server.py"],mcp>=1.0.0loose pinsmithery.yaml— declarative tool listREADME.md,package.json,server.json,.well-known/mcp/server-card.json— MEOK-fleet tokenstests/test_server.py+auth_middleware.py— ported from gold-standard (sys.path made repo-relative, no~/clawd/...hardcode).github/workflows/{ci,test,mcp-smithery-publish}.yml— CI on Python 3.10/3.11 (test) and 3.11/3.12 (ci), Smithery publish onrelease: publishedDockerfile.glama—python:3.14-slim+uvrunningmcp-wrapper.pyVerification (local)
All 4 flagships locally: 4 passed, 1 skipped. Wheels contain only
server.py.Pin convention
This repo pins
mcp>=1.0.0(loose) because the gateway doespip install -r requirements-gateway.txt "${PKG}", and pip's exact-pin-takes-precedence means the gateway can pin exactly without conflict.Follow-ups (not in this PR)
python3 -m build && twine upload dist/*after merge (requires~/.pypirctoken).meok-compliance-gateway/.github/workflows/build-push.ymlmatrix to add the 4 new flagships (separate PR to the gateway).Test plan
Test MCP Serverworkflow, Python 3.10/3.11)CIworkflow, Python 3.11/3.12)server.py🤖 Generated with Claude Code