Conviso

v1.0.0Securitystable

MCP Server for Conviso Platform integration.

convisomcpai-integration
Share:
9
Stars
0
Downloads
0
Weekly
0/5

What is Conviso?

Conviso is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to mcp server for conviso platform integration.

MCP Server for Conviso Platform integration.

This server falls under the Security category on MCPgee, the world's largest MCP server directory with 33,000+ servers.

Features

  • MCP Server for Conviso Platform integration.

Use Cases

Integrate Conviso Platform security services through MCP.
convisoappsec

Maintainer

LicenseMIT
Languagepython
Versionv1.0.0
UpdatedMay 14, 2026
Statushealthy
Maintenanceactive

Works with

ClaudeOpenAIwindowsmacoslinux

Installation

Manual Installation

npx conviso

Configuration

Configuration Details

Config File

claude_desktop_config.json

Performance

Response Metrics

Response Time< 200ms
ThroughputMedium

Resource Usage

Memory UsageLow
CPU UsageLow

How to Set Up and Use Conviso

The Conviso MCP Server integrates the Conviso Platform application security management service with MCP-compatible AI assistants. It exposes 16 tools covering vulnerability management, asset mapping, project tracking, and security metrics — enabling developers to query their security posture and manage findings using natural language directly within their AI coding environment.

Prerequisites

  • Conviso Platform account with an active subscription
  • Conviso API key from your Conviso Platform profile settings
  • Python 3.10+ or Node.js 18+ depending on your preferred implementation
  • MCP-compatible client such as Claude Desktop or Cursor
  • Git for cloning the repository
1

Clone the repository

Clone the Conviso MCP server repository from GitHub. It contains both Python and Node.js implementations.

git clone https://github.com/convisoappsec/conviso-mcp.git
cd conviso-mcp
2

Install dependencies (Python)

Create a virtual environment and install the Python dependencies. The Python implementation is recommended for production use.

python -m venv venv
source venv/bin/activate  # Windows: venv\Scripts\activate
pip install -r python/requirements.txt
3

Obtain your Conviso API key

Log into the Conviso Platform, navigate to your profile settings, and generate an API key. Copy the key — it will be used as the CONVISO_API_KEY environment variable.

4

Configure Claude Desktop

Add the Conviso MCP server to your Claude Desktop configuration using the absolute path to the Python executable in your virtual environment.

{
  "mcpServers": {
    "conviso": {
      "command": "/absolute/path/to/venv/bin/python",
      "args": ["/absolute/path/to/conviso-mcp/python/server.py"],
      "env": {
        "CONVISO_API_KEY": "your_conviso_api_key_here"
      }
    }
  }
}
5

Verify the connection

Restart Claude Desktop and check that the Conviso MCP server appears as connected (plug icon active/green). Then ask Claude to list your companies to confirm the integration is working.

Conviso Examples

Client configuration

Complete Claude Desktop configuration for the Conviso MCP server using the Python implementation with your API key.

{
  "mcpServers": {
    "conviso": {
      "command": "/home/user/conviso-mcp/venv/bin/python",
      "args": ["/home/user/conviso-mcp/python/server.py"],
      "env": {
        "CONVISO_API_KEY": "cpx_live_xxxxxxxxxxxxxxxxxxxxxxxx"
      }
    }
  }
}

Prompts to try

Ask Claude these security-focused questions after connecting the Conviso MCP server.

- "List all my companies in Conviso Platform"
- "Show me the high-severity vulnerabilities in the mobile app project"
- "What is the mean time to remediate issues in our last sprint?"
- "List all assets and their current risk scores"
- "Give me a summary of open security findings for project ID 42"

Troubleshooting Conviso

Authentication error: invalid or missing API key

Verify that CONVISO_API_KEY is set correctly in the 'env' section of your MCP config. Log into the Conviso Platform and regenerate the API key if needed. Ensure there are no extra spaces or newlines in the key value.

Claude Desktop cannot find the MCP server

Always use absolute paths in the 'command' and 'args' fields of claude_desktop_config.json. Run 'which python' inside your activated virtual environment to get the correct absolute path to the Python binary.

Tools return empty results

Confirm your Conviso Platform account has data (companies, projects, vulnerabilities) associated with the API key's permissions scope. Some tools require specific roles — check your account permissions in the Conviso Platform settings.

Frequently Asked Questions about Conviso

What is Conviso?

Conviso is a Model Context Protocol (MCP) server that mcp server for conviso platform integration. It connects AI assistants to external tools and data sources through a standardized interface.

How do I install Conviso?

Follow the installation instructions on the Conviso GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.

Which AI clients work with Conviso?

Conviso works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.

Is Conviso free to use?

Yes, Conviso is open source and available under the MIT license. You can use it freely in both personal and commercial projects.

Conviso Alternatives — Similar Security Servers

Looking for alternatives to Conviso? Here are other popular security servers you can use with Claude, Cursor, and VS Code.

Casdoor

13.6k

An open-source Agent-first Identity and Access Management (IAM) /LLM MCP & agent gateway and auth server with web UI supporting OpenClaw, MCP, OAuth, OIDC, SAML, CAS, LDAP, SCIM, WebAuthn, TOTP, MFA, Face ID, Google Workspace, Azure AD

ghidraMCP

9.0k

An Model Context Protocol server that enables LLMs to autonomously reverse engineer applications by exposing Ghidra's decompilation and analysis tools. It allows AI agents to list code structures, rename methods, and analyze binaries directly through

HexStrike AI

8.9k

HexStrike AI MCP Agents is an advanced MCP server that lets AI agents (Claude, GPT, Copilot, etc.) autonomously run 150+ cybersecurity tools for automated pentesting, vulnerability discovery, bug bounty automation, and security research. Seamlessly b

IDA Pro MCP

8.7k

Enables AI-assisted reverse engineering in IDA Pro by providing tools to analyze binaries, decompile functions, manage comments, search patterns, and interact with the IDA database through natural language.

Anthropic Cybersecurity Skills

6.6k

754 structured cybersecurity skills for AI agents · Mapped to 5 frameworks: MITRE ATT&CK, NIST CSF 2.0, MITRE ATLAS, D3FEND & NIST AI RMF · agentskills.io standard · Works with Claude Code, GitHub Copilot, Codex CLI, Cursor, Gemini CLI & 20+ platform

Hooker

5.1k

🔥🔥 hooker is a Frida-based reverse engineering toolkit for Android. It offers a user-friendly CLI, universal scripts, auto hook generation, memory roaming to detect activities/services, one-click SOCKS5 proxy setup, Frida JustTrustMe, and BoringSSL u

Browse More Security MCP Servers

Explore all security servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.

Quick Config Preview

{ "mcpServers": { "conviso": { "command": "npx", "args": ["-y", "conviso"] } } }

Add this to your claude_desktop_config.json or .cursor/mcp.json

Read the full setup guide →

Ready to use Conviso?

Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.

33,000+ ServersFree & Open SourceStep-by-Step Guides