intigriti-mcp
Provides tools for interacting with the Intigriti bug bounty platform, allowing users to list programs, retrieve scope details, diff scope changes over time, and receive program recommendations based on a personal skills profile.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@intigriti-mcpWhat programs should I target based on my skills?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
intigriti-mcp
MCP server for the Intigriti bug bounty platform. Lists programs, pulls scope details, diffs scope changes over time, and recommends the best-fit programs based on your skills profile — with a boost for programs whose scope was recently updated.
Implements the Intigriti Researcher API v1.
Endpoint paths (/v1/programs, /v1/programs/{id}), response shapes
(pagination envelope, enum/money view-models), and field mappings are verified
against Intigriti's published OpenAPI spec.
Tools
Tool | Description |
| All programs visible to your token, with status, rewards, confidentiality level, and industry. |
| Full asset list with endpoint, type, tier, description, and in/out-of-scope flag + scope version timestamp. |
| Fetch current scope, diff against the last stored snapshot (added/removed/modified), update snapshot. |
| Score all active programs against your skills manifest, ranked best-fit first. |
Related MCP server: VulneraMCP
Setup
npm install
npm run buildSet environment variables:
export INTIGRITI_API_TOKEN="your-researcher-api-token" # required
export INTIGRITI_SKILLS_PATH="./skills.json" # optional, default shown
export INTIGRITI_SNAPSHOT_PATH="./data/scope-snapshots.json" # optional, default shownGenerate a Personal Access Token (PAT) from your Intigriti profile:
Personal access tokens. Auth is Authorization: Bearer <PAT>.
Copy skills.example.json to skills.json and edit it to reflect your
strengths — each entry is a skill/vuln-class, a confidence weight (0–1), and
the asset types it applies to:
{ "skill": "ssrf", "weight": 0.8, "appliesTo": ["api", "url"] }skills.json is git-ignored since it's personal.
Running
Standalone:
npm startAs an MCP server in your client config (point at the built entry point with the env vars above):
{
"mcp": {
"intigriti": {
"type": "local",
"command": ["node", "/path/to/intigriti-mcp/dist/index.js"],
"enabled": true,
"environment": {
"INTIGRITI_API_TOKEN": "{env:INTIGRITI_API_TOKEN}",
"INTIGRITI_SKILLS_PATH": "/path/to/skills.json",
"INTIGRITI_SNAPSHOT_PATH": "/path/to/scope-snapshots.json"
}
}
}
}How scoring works
recommend_program fetches every active program's scope, then for each skill
in your manifest counts how many in-scope assets match that skill's declared
asset types (appliesTo):
score = Σ(skill weight × matching asset count) / total in-scope assetsNormalizing by asset count means a program isn't favored just for being
bigger. See src/scoring.ts; the matching logic is intentionally simple to
start — extend it there as your manifest gets richer.
Recency boost
Intigriti publishes a scope version timestamp per program
(domains.createdAt). If it's within the recency window (default 14 days),
the score is multiplied by a factor that decays linearly from a max boost
(default 1.25× for a just-updated scope) down to 1.0 at the window edge.
This surfaces freshly-changed programs before they cool off. Boosted results
include a note like:
Recency boost 1.214x — scope published 2.0d ago (window 14d, max 1.25x)Tune it per call: recommend_program(topN=10, recencyWindowDays=7, maxRecencyBoost=1.5).
Scope fidelity
Asset types are normalized to the manifest's vocabulary (
website/wildcard→url,web_service→api).Out-of-scope assets (tier
"Out Of Scope") are excluded from scoring.
Persistence
Scope snapshots are stored as flat JSON at INTIGRITI_SNAPSHOT_PATH
(default ./data/scope-snapshots.json), keyed by program ID. Swap
ScopeStore for a SQLite-backed version if this grows large or you want
historical diff queries instead of just "since last check".
Project layout
src/intigritiClient.ts— API client + response mappingsrc/scoring.ts— program scoring and recency boostsrc/scopeStore.ts— scope snapshot persistence and diffingsrc/skillsManifest.ts— loads yourskills.jsonsrc/index.ts— MCP tool wiring
This server cannot be installed
Maintenance
Related MCP Connectors
Discover verified deep-tech engineering bounties from any AI agent.
Hosted CVE + bug-bounty-mechanic MCP: exploitation-first ranking, CVE fact-check, mechanic transfer
Search and commission verified human research review through funded Research Bounties.
Hunt zero-days by talking to binaries. 40+ tools. Hosted, OAuth + SSO, invite: hi@byteray.ai
Related MCP Servers
- AlicenseCqualityDmaintenanceEnables AI agents to generate and manage specialized bug bounty hunting workflows including reconnaissance, vulnerability testing, OSINT gathering, and file upload testing. Provides REST API endpoints for comprehensive security assessments with intelligence-driven vulnerability prioritization.402MIT
- AlicenseBqualityAmaintenanceAI-powered bug bounty hunting platform that integrates security tools (OWASP ZAP, Caido, Burp Suite) for automated reconnaissance, vulnerability testing, JavaScript analysis, and finding management with PostgreSQL storage.4741MIT
- AlicenseNot gradedqualityAmaintenanceReal-time directory of every public VDP and bug bounty program415MIT
- FlicenseNot gradedqualityCmaintenanceWraps multiple bug bounty platform APIs (HackerOne, Bugcrowd, etc.) behind a uniform MCP tool surface, enabling LLM agents to query programs, scope, and briefs across platforms through a single interface.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Aceproulx/intigriti-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server