Hi everyone,
I'm looking for a tool or MCP that lets AI agents query docs.rs or local cargo doc outputs directly.
Right now, when my agents try to learn a crate's API, they search the webpages or raw .rs files (AFAIK). This wastes a massive amount of tokens on irrelevant source code when all they really need are the type signatures and docstrings.
I know agents can rely on text search to navigate source code. But given that rustdoc inherently generates structured data, is there a more standardized interface to query it? My goal is to use this query mode as a foundation to develop higher-level agent skills.
Thanks!