4,500+ servers built on MCP Fusion
Vinkius
Checkmarx logo
Vinkius
LangChain logo

How to Use the Checkmarx MCP in LangChain

Build autonomous AppSec agents for Checkmarx with LangChain. This MCP Server connects your chains directly to your security scans.

See Vinkius in Action

Works with every AI agent you already use

…and any MCP-compatible client

Checkmarx MCP on Cursor AI Code Editor MCP Client Checkmarx MCP on Claude Desktop App MCP Integration Checkmarx MCP on OpenAI Agents SDK MCP Compatible Checkmarx MCP on Visual Studio Code MCP Extension Client Checkmarx MCP on GitHub Copilot AI Agent MCP Integration Checkmarx MCP on Google Gemini AI MCP Integration Checkmarx MCP on Lovable AI Development MCP Client Checkmarx MCP on Mistral AI Agents MCP Compatible Checkmarx MCP on Amazon AWS Bedrock MCP Support
MCP Servers - Free for Subscribers
LangChain

Connect Checkmarx MCP to LangChain

Create your Vinkius account to connect Checkmarx to LangChain and route execution through our secure gateway. The platform manages server hosting, runtime updates, and security layers. Configuration requires no manual server provisioning.

GDPR Free for Subscribers

Chain Scans and Results

Start a workflow with `run_scan`. Your agent gets the scan ID, then polls `get_scan_details` until the scan is 'Completed'. It then passes that ID to `get_scan_results` to pull the vulnerability data. This creates a simple, effective CI/CD-style chain. You're not just running a scan; you're building a process that reacts to its own results. The output of one tool call becomes the input for the next, letting your agent work through a problem step-by-step without human intervention.

Pinpoint the Best Fix Location

Your agent can take a high-severity finding from `get_scan_results` and feed its details into `list_bfl`. This tool points to the exact file and lines of code for the most efficient fix. No more guesswork about where to start. It's a direct path from problem to solution. You can also build chains that specifically target infrastructure issues by calling `get_kics_results` to check your Terraform or Kubernetes configurations.

Manage Projects with Your LangChain MCP Server

Before kicking off any workflow, your agent can use `list_applications` and `list_projects` to get its bearings. It finds the right project ID and confirms the context before acting. This prevents it from scanning the wrong repository or branch. If a developer pushes a new commit mid-scan, a separate chain can trigger `cancel_scan` to avoid wasting resources on outdated code. This adds a layer of intelligence to your automation. It's a core benefit of using an MCP architecture.

Setup guide

Set up Checkmarx MCP in LangChain

Prerequisites

  • Python 3.10+ installed
  • langchain-mcp-adapters + langgraph packages
  • Active Vinkius subscription with a valid endpoint token
  1. 1

    Install dependencies

    Run pip install langchain-mcp-adapters langgraph langchain-openai. The MCP adapters package converts MCP tools into native LangChain BaseTool objects.

  2. 2

    Connect via HTTP transport

    Use MultiServerMCPClient with "transport": "http" pointing to your Vinkius endpoint. Replace [YOUR_TOKEN_HERE] with your token from cloud.vinkius.com.

  3. 3

    Create a ReAct agent

    Pass the discovered tools to create_react_agent() from LangGraph. The agent automatically routes Checkmarx tool calls through the MCP protocol.

  4. 4

    Run with any LLM

    Swap ChatOpenAI for ChatAnthropic, ChatGoogleGenerativeAI, or any LangChain-compatible model. The MCP tools work identically across all providers.

agent.py
from langchain_mcp_adapters.client import MultiServerMCPClient
from langgraph.prebuilt import create_react_agent
from langchain_openai import ChatOpenAI

async with MultiServerMCPClient({
    "checkmarx-mcp": {
        "transport": "http",
        "url": "https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp",
    }
}) as client:
    tools = client.get_tools()

    agent = create_react_agent(
        ChatOpenAI(model="gpt-4o"),
        tools,
    )
    result = await agent.ainvoke({
        "messages": "List recent Checkmarx transactions"
    })
    print(result["messages"][-1].content)

Independent Platform Disclaimer: Vinkius is an independent platform and is not affiliated with, endorsed by, sponsored by, verified by, or otherwise authorized by Checkmarx. All third-party trademarks, logos, and brand names are the property of their respective owners. Their use on this website is strictly for informational purposes to identify service compatibility and interoperability.

Why Choose Vinkius

Vinkius connects your tools to AI with real-time monitoring and automatic cost savings — all from one dashboard.

Real-time monitoring

Live

visibility into every interaction

Connect your favorite tools to your AI and see exactly what's happening — every request, every response, in real time.

Built-in savings

60%

lower AI costs

Vinkius compresses data between your apps and your AI automatically. Lower bills every month — no configuration required.

Single dashboard

One

place for every integration

Every tool your AI connects to, managed from a single screen. One account, complete control.

Common questions about Checkmarx MCP in LangChain

Your agent should first call `run_scan` to start the process. It then uses the returned scan ID to poll `get_scan_details` until the status is 'Completed'. Finally, it passes that same ID to `get_scan_results` to get the actual findings.
Yes. After getting vulnerabilities from `get_scan_results`, your agent can pass the scan ID and rule ID to `list_bfl`. This tool returns the Best Fix Location, pointing directly to the code that offers the most impact for a fix.
Use `list_projects` to get a list of all available projects and their IDs. Your agent can then select the correct project ID to use with `run_scan` or `list_scans`. This ensures your chains always operate on the right codebase.
Absolutely. The `get_kics_results` tool is designed for this. Your agent can call it to find misconfigurations in Terraform, Kubernetes YAML, or Dockerfiles, separate from your main application code scans.
The server processes your project and scan metadata, including source code locations, vulnerability details, and scan IDs. Your credentials aren't stored. Every request is authenticated with an ephemeral token inside Vinkius's zero-trust sandbox, isolating your data.

Start using the Checkmarx MCP today

We host it, we monitor it, we maintain it. You just paste one token.

Built & Managed by Vinkius 30s setup 10 tools

We've already built the connector for Checkmarx. Just plug in your AI agents and start using Vinkius.

No hosting. No infrastructure. No complex setup.
All 10 tools are live and waiting. You're up and running in seconds.

Claude Claude
ChatGPT ChatGPT
Cursor Cursor
Gemini Gemini
Windsurf Windsurf
VS Code VS Code
JetBrains JetBrains
Vercel Vercel
+ other MCP clients

Vinkius gives your AI agents access to the full catalog of app connectors, all fully managed, secure, and enterprise-ready. One subscription, every tool you need.

Zero hosting required Full MCP catalog included Enterprise-grade security Auto-updated by Vinkius

Built, hosted, and secured by Vinkius. You just connect and go.