Identifies the top-level entry points of your application — the functions where execution begins. Finds main functions, HTTP route handlers, CLI command handlers, event listeners, and similar constructs across languages.
stellarion_get_callees| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
scope | string | no | — | Path filter to restrict search to a directory (e.g., src/api, cmd/) |
limit | number | no | — | Maximum number of results |
Natural language:
What are the entry points of this application?
MCP call:
{
"tool": "stellarion_find_entry_points",
"arguments": {}
}
Natural language:
Find all HTTP route handlers in the api directory
MCP call:
{
"tool": "stellarion_find_entry_points",
"arguments": {
"scope": "src/api"
}
}
Natural language:
What CLI commands does this application expose?
MCP call:
{
"tool": "stellarion_find_entry_points",
"arguments": {
"scope": "cmd"
}
}
Returns a list of entry points:
stellarion_get_callees on individual entry points to trace the full execution flow.scope to focus on specific parts of a monorepo or multi-module project.fn main() in Rust, if __name__ == "__main__" in Python, Express/Fastify route registrations in JavaScript, and similar patterns across supported languages.