We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Anandb71/arbor'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
lib.rs•412 B
//! Arbor Watcher - File watching and incremental indexing
//!
//! This crate handles the file system side of things:
//! - Walking directories to find source files
//! - Watching for changes
//! - Triggering incremental re-indexing
//!
//! It respects .gitignore and other ignore patterns.
mod indexer;
mod watcher;
pub use indexer::{index_directory, IndexResult};
pub use watcher::{FileChange, FileWatcher};