argyph-parse 1.0.1

Local-first MCP server giving AI coding agents fast, structured, and semantic context over any codebase.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![forbid(unsafe_code)]
#![cfg_attr(test, allow(clippy::unwrap_used))]

mod chunker;
mod error;
pub mod languages;
mod parser;
pub mod structural;
pub mod types;

pub use chunker::{ast_chunks, char_split, fallback_chunks};
pub use error::{ParseError, Result};
pub use parser::{DefaultParser, Parser};
pub use types::{
    ByteRange, Chunk, ChunkId, ChunkKind, Import, ParsedFile, Symbol, SymbolId, SymbolKind,
};