get_help
Retrieve help information for using the Joern MCP Server's code review and security analysis capabilities through natural language queries.
Instructions
Get help information from joern server
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.py:73-80 (handler)The handler function for the 'get_help' tool. It is decorated with @joern_mcp.tool(), which registers it with the FastMCP server. The function calls joern_remote('help') to retrieve help information from the Joern server and returns it or an error message.
@joern_mcp.tool() def get_help(): """Get help information from joern server""" response = joern_remote('help') if response: return response else: return 'Query Failed'