Skip to content

Commit 76aeb8a

Browse files
committed
update README and settings for Asterisk API URL and enhance feature descriptions
1 parent e635aad commit 76aeb8a

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ A Model Context Protocol (MCP) server that provides security scanning capabiliti
44

55
## Overview
66

7-
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 (MCP) to expose security scanning tools to AI assistants like Claude, enabling them to analyze code for security vulnerabilities.
7+
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 (MCP) to expose security scanning tools to AI assistants like Claude, Cursor, Cline, Windsurf, etc. enabling them to analyze code for security vulnerabilities.
88

99
## Architecture
1010

@@ -25,16 +25,16 @@ flowchart LR
2525
## Features
2626

2727
- **Code Snippet Scanning**: Analyze individual code snippets for security vulnerabilities
28-
- **Codebase Scanning**: Scan multiple files for security issues
29-
- **Change Verification**: Verify if code changes introduce security vulnerabilities
28+
- **Codebase Scanning**: Scan multiple files for security issues with accurate context coverage
29+
- **Change Verification**: Verify if code changes in your chat history introduce security vulnerabilities
3030
- **Beautiful Settings UI**: Configure the server through a graphical interface
3131
- **Flexible Transport**: Support for stdio and SSE transport protocols
3232
- **Comprehensive Logging**: Detailed logging with configurable verbosity
3333

3434
## Requirements
3535

36-
- Python 3.7+
37-
- pipx
36+
- Python 3.10+
37+
- pipx / uvx
3838
- httpx
3939
- mcp[cli]
4040
- dearpygui (for settings UI)

asterisk_mcp_server/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def __init__(self):
3333
"""Initialize configuration with default values."""
3434
self.config_file = Path("asterisk-config.json")
3535
self.config = {
36-
"api_url": "https://mcp.asterisk.so:1337",
36+
"api_url": "https://api.mcp.asterisk.so",
3737
"api_key": "",
3838
"api_timeout": None,
3939
"server_name": "asterisk-mcp",

asterisk_mcp_server/ui/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ def add_tooltip(item, text):
166166
)
167167
add_tooltip(
168168
"api_url",
169-
"The base URL of the Asterisk API server (e.g., https://api.asteriskmcp.com)",
169+
"The base URL of the Asterisk API server (e.g., https://api.mcp.asterisk.so)",
170170
)
171171

172172
with dpg.group(horizontal=True):

0 commit comments

Comments
 (0)