We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/hypothesi/mcp-server-tauri'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
clippy.toml•476 B
# Clippy configuration for all Rust code in this monorepo
# See: https://doc.rust-lang.org/clippy/lint_configuration.html
# Minimum supported Rust version - matches rust-version in Cargo.toml
msrv = "1.70"
# Maximum lines in a function before clippy::too_many_lines warns (default: 100)
# Note: The lint itself must be enabled separately via #![warn(clippy::too_many_lines)]
# or in Cargo.toml [lints.clippy] section, as it's allow-by-default
too-many-lines-threshold = 300