get_help
Access detailed help information from the Joern MCP Server to assist with code review and security analysis via natural language queries.
Instructions
Get help information from joern server
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.py:73-80 (handler)The get_help tool handler function, registered via @joern_mcp.tool() decorator. It executes a 'help' query on the Joern server using the joern_remote helper and returns the result 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'