Intigriti MCP Server

Intigriti MCP Server

A Model Context Protocol (MCP) server for interacting with the Intigriti bug bounty platform's Researcher API. It enables AI assistants to manage bug bounty programs, submissions, and research workflow.

Category
访问服务器

README

Intigriti MCP Server

A Model Context Protocol (MCP) server for interacting with the Intigriti bug bounty platform's Researcher API. This enables AI assistants like Claude to help security researchers manage their bug bounty programs, submissions, and research workflow.

Version Node License

🚀 Features

This MCP server provides comprehensive tools for interacting with Intigriti:

📋 Program Management

  • List Programs - View all available bug bounty programs
  • Get Program Details - Access detailed program information
  • View Scope - See in-scope and out-of-scope assets

🐛 Submission Management

  • List Submissions - View your bug submissions with advanced filtering
  • Get Submission Details - Access full submission information
  • Create Submissions - Submit new bug reports
  • Add Comments - Update submissions with additional information

📊 Researcher Analytics

  • Get Stats - View your performance metrics and earnings

📦 Installation

Prerequisites

  • Node.js 18 or higher
  • npm or yarn
  • Intigriti account with researcher access
  • Intigriti API token

Step 1: Install Dependencies

npm install

Step 2: Get Your API Token

  1. Log in to Intigriti
  2. Navigate to your profile settings
  3. Go to the API section
  4. Generate a new API token with researcher permissions
  5. Copy the token securely

Note: You may need to contact Intigriti support to enable API access for your account.

Step 3: Configure Environment

Create a .env file in the project root:

INTIGRITI_API_TOKEN=your_api_token_here

Or export as an environment variable:

export INTIGRITI_API_TOKEN="your_api_token_here"

🔧 Configuration

For Claude Desktop

Add this configuration to your Claude Desktop config file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "intigriti": {
      "command": "node",
      "args": [
        "/absolute/path/to/intigriti-mcp-server/index.js"
      ],
      "env": {
        "INTIGRITI_API_TOKEN": "your_api_token_here"
      }
    }
  }
}

Important: Replace /absolute/path/to/intigriti-mcp-server/index.js with the actual path to your installation.

For Other MCP Clients

The server runs on stdio transport and can be integrated with any MCP-compatible client. Ensure you:

  1. Set the INTIGRITI_API_TOKEN environment variable
  2. Run the server with Node.js 18+
  3. Use stdio for communication

📖 Usage Examples

Once configured with Claude Desktop, you can use natural language to interact with Intigriti:

Viewing Programs

"Show me all available bug bounty programs"
"What programs can I participate in on Intigriti?"
"Get details about the [Company Name] program"
"What's the scope for the XYZ program?"

Managing Submissions

"List all my open bug submissions"
"Show me my accepted bugs from this month"
"Get details about submission abc-123-def"
"What's the status of my recent submissions?"

Submitting Bugs

"I found an XSS vulnerability in the XYZ program. Help me submit it."
"Create a new submission for [program] about [vulnerability type]"
"Add a comment to submission [id] with additional reproduction steps"

Viewing Statistics

"Show me my researcher statistics"
"What's my acceptance rate on Intigriti?"
"How many submissions have I made this year?"

🛠️ Available Tools

1. intigriti_list_programs

Lists all bug bounty programs available to you as a researcher.

Parameters: None

Returns: Array of programs with name, company, status, and reward information

Example:

List all available programs

2. intigriti_get_program

Gets detailed information about a specific program.

Parameters:

  • program_id (string, required) - Program identifier

Returns: Full program details including policy, rewards, response targets

Example:

Get details about program abc123

3. intigriti_get_program_scope

Retrieves the structured scope for a program.

Parameters:

  • program_id (string, required) - Program identifier

Returns: In-scope and out-of-scope assets

Example:

What's the scope for program xyz789?

4. intigriti_list_submissions

Lists your bug submissions with optional filtering.

Parameters:

  • program_id (string, optional) - Filter by program
  • status (string, optional) - Filter by status: open, closed, accepted, duplicate, na, informative
  • limit (number, optional) - Max results (default: 50)

Returns: Array of submissions

Example:

Show me all my accepted submissions
List open submissions for program abc123

5. intigriti_get_submission

Gets detailed information about a specific submission.

Parameters:

  • submission_id (string, required) - Submission UUID

Returns: Full submission details with communication history

Example:

Get details about submission 12345-abcd-6789

6. intigriti_create_submission

Submits a new bug report to a program.

Parameters:

  • program_id (string, required) - Target program
  • title (string, required) - Brief vulnerability title
  • description (string, required) - Detailed description
  • severity (string, required) - critical, high, medium, low, none
  • proof_of_concept (string, required) - Reproduction steps
  • endpoint (string, required) - Affected URL/endpoint
  • vulnerability_type (string, optional) - Type of vulnerability

Returns: Created submission details

Example:

Create a new XSS submission for program xyz with title "Reflected XSS in search parameter"

7. intigriti_add_submission_comment

Adds a comment to an existing submission.

Parameters:

  • submission_id (string, required) - Submission UUID
  • comment (string, required) - Comment text

Returns: Updated submission

Example:

Add comment "Additional proof of concept attached" to submission 12345

8. intigriti_get_researcher_stats

Retrieves your researcher statistics.

Parameters: None

Returns: Stats including total submissions, acceptance rate, reputation, earnings

Example:

Show me my researcher statistics

🔒 Security Best Practices

  • Never commit your API token to version control
  • Store tokens in environment variables or secure secret management
  • Rotate tokens periodically
  • Use tokens with minimum required permissions
  • Follow Intigriti's responsible disclosure policies
  • Review the .gitignore file to ensure secrets are excluded

⚠️ Error Handling

The server provides detailed error messages:

  • Authentication errors - Check your API token validity
  • Permission errors - Verify researcher access level
  • Not found errors - Confirm program/submission IDs are correct
  • Rate limit errors - Wait before making additional requests
  • Network errors - Check your internet connection

🚦 Rate Limits

Intigriti API has rate limits. The server will return appropriate error messages if limits are exceeded. For current rate limit information, check the Intigriti API documentation.

🐛 Troubleshooting

Server Won't Start

  • Verify Node.js version: node --version (must be ≥18)
  • Install dependencies: npm install
  • Check file permissions: chmod +x index.js
  • Verify path in Claude Desktop config

Authentication Fails

  • Confirm API token is valid and not expired
  • Check token has researcher permissions
  • Verify environment variable is set correctly
  • Ensure no extra spaces in token value

API Endpoint Errors

  • Intigriti API may have changed - check their documentation
  • Some endpoints may require specific permissions
  • Contact Intigriti support for API access issues

Connection Issues

  • Check your internet connection
  • Verify firewall isn't blocking the connection
  • Ensure you can access api.intigriti.com

📚 Resources

🤝 Contributing

Contributions are welcome! Please ensure:

  • Code follows existing style and conventions
  • New tools include proper descriptions and input schemas
  • README is updated with new functionality
  • All sensitive data is handled securely
  • Tests pass (when implemented)

📝 License

MIT License - see LICENSE file for details.

⚠️ Disclaimer

This is an unofficial MCP server for Intigriti. It is not affiliated with, endorsed by, or officially connected to Intigriti. Use at your own risk and in accordance with Intigriti's terms of service and responsible disclosure policies.

💬 Support

🎯 Roadmap

Future enhancements may include:

  • [ ] File upload support for attachments
  • [ ] Webhook integration
  • [ ] Advanced filtering and search
  • [ ] Batch operations
  • [ ] Caching for improved performance
  • [ ] Unit tests and integration tests
  • [ ] TypeScript support

Made with ❤️ for the security research community

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选