pathfinder-mcp 0.5.0

Pathfinder — The Headless IDE MCP Server for AI Coding Agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Tool handler implementations for the Pathfinder MCP server.
//!
//! Each submodule contains the business logic for a group of related tools.
//! The `impl PathfinderServer` in `server.rs` delegates to these functions,
//! keeping the macro-decorated handler stubs thin and the logic testable.

pub(super) mod diagnostics;
pub(super) mod edit;
pub(super) mod file_ops;
pub(super) mod navigation;
pub(super) mod repo_map;
pub(super) mod search;
pub(super) mod source_file;
pub(super) mod symbols;