MCP Catalogs
Home

asterisk-mcp-server

by winfunc·33·Score 38

Asterisk MCP server provides security scanning tools for code snippets and codebases via the Asterisk API.

securitydeveloper-toolsai-llm
10
Forks
3
Open issues
14 mo ago
Last commit
2d ago
Indexed

Overview

Asterisk MCP Server is a middleware component that connects to the Asterisk security API to provide real-time security analysis of code. It implements the Model Context Protocol to expose security scanning tools to AI assistants like Claude, Cursor, Cline, and Windsurf. The server supports code snippet scanning, codebase scanning, and verification of code changes with a beautiful settings UI and flexible transport options including stdio and SSE protocols.

Try asking AI

After installing, here are 5 things you can ask your AI assistant:

you:Security scanning of code snippets in AI assistants
you:Full codebase vulnerability analysis
you:Verifying security impact of code changes during development
you:How do I get an API key?
you:What transport protocols are supported?

When to choose this

Choose this server if you need security scanning integration for your AI coding assistant and are already using or willing to integrate with the Asterisk API.

When NOT to choose this

Avoid if you need offline security scanning capabilities or prefer open-source solutions without vendor dependencies.

Tools this server exposes

4 tools extracted from the README
  • scan_snippet

    Scans individual code snippets for security vulnerabilities.

  • scan_codebase

    Scans multiple files for security issues.

  • verify

    Verifies if code changes introduce security vulnerabilities.

  • settings

    Opens the settings UI when the user enters '/asterisk'.

Comparable tools

semgrep-mcpcodeql-mcpbrakeman-mcp

Installation

Installation

  1. Install Python 3.10+
  2. Install using pipx or uvx:

``bash pipx install asterisk-mcp-server # or uvx install asterisk-mcp-server ``

  1. Configure in your AI assistant (example for Claude Desktop):

``json { "mcpServers": { "asterisk-mcp": { "command": "pipx", "args": [ "run", "asterisk-mcp-server", "--api-url", "https://api.mcp.asterisk.so", "--transport", "stdio", "--key", "YOUR_API_KEY" ], "timeout": 3600 } } } ``

FAQ

How do I get an API key?
You can get your API key from https://app.mcp.asterisk.so
What transport protocols are supported?
The server supports both stdio and SSE (Server-Sent Events) transport protocols.

Compare asterisk-mcp-server with

GitHub →

Last updated · Auto-generated from public README + GitHub signals.