Cratesio MCP Server

Gives your AI agent crate search, documentation, dependency analysis, download stats, and security auditing to make informed decisions about Rust

Remote serverstreamable-http

What is the Cratesio MCP MCP server?

Most knowledge and memory work still happens through a UI a human drives. Cratesio MCP MCP server moves it into the conversation instead. Gives your AI agent crate search, documentation, dependency analysis, download stats, and security auditing to make informed decisions about Rust dependencies.

Getting it running

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

The tools it exposes

The server publishes 14 tools. What each one is for:

  • search_crates — Search for crates by name or keywords
  • get_crate_info — Detailed crate metadata (description, links, stats)
  • get_crate_versions — Version history with release dates and download counts
  • get_crate_version — Detailed metadata for a specific version
  • get_crate_readme — README content for a crate version
  • get_crate_features — Feature flags and their sub-feature activations
  • get_crate_docs — Browse documentation structure from docs.rs
  • get_doc_item — Full docs for a specific item (fn, struct, trait)
  • search_docs — Search for items by name within a crate's docs
  • get_dependencies — Dependencies for a specific version
  • get_reverse_dependencies — Crates that depend on a given crate
  • audit_dependencies — Check deps against OSV.dev vulnerability database

Things to watch

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Cratesio MCP.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

How it compares

Plenty of knowledge and memory servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Cratesio MCP's toolset — search_crates, get_crate_info, get_crate_versions and 11 more — is a fair guide to whether it matches your workflow. It is maintained by joshrotenberg; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Available tools

ToolWhat it does
search_cratesSearch for crates by name or keywords
get_crate_infoDetailed crate metadata (description, links, stats)
get_crate_versionsVersion history with release dates and download counts
get_crate_versionDetailed metadata for a specific version
get_crate_readmeREADME content for a crate version
get_crate_featuresFeature flags and their sub-feature activations
get_crate_docsBrowse documentation structure from docs.rs
get_doc_itemFull docs for a specific item (fn, struct, trait)
search_docsSearch for items by name within a crate's docs
get_dependenciesDependencies for a specific version
get_reverse_dependenciesCrates that depend on a given crate
audit_dependenciesCheck deps against OSV.dev vulnerability database
get_downloadsDownload statistics and trends
get_version_downloadsDaily download stats for a specific version

How to install the Cratesio MCP MCP server

{
  "mcpServers": {
    "cratesio-mcp": {
      "type": "http",
      "url": "https://cratesio-mcp.fly.dev/"
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Example prompts to try

  • Use Cratesio MCP to search crates.
  • Use Cratesio MCP to get crate info.
  • Use Cratesio MCP to get crate versions.

Frequently asked questions

It connects Cratesio MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (search_crates, get_crate_info, get_crate_versions, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Cratesio MCP directly.