We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/awslabs/iam-policy-autopilot'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
node_kinds.rs•821 B
//! Tree-sitter node kind constants for Python AST
//!
//! These constants represent the node kinds returned by Tree-sitter's Python grammar.
//! Using constants instead of string literals provides:
//! - Compile-time checking of constant names
//! - IDE autocomplete support
//! - Centralized documentation of node kinds
//! - Easier refactoring
//!
//! Note: The actual values come from the Tree-sitter Python grammar and cannot be
//! changed. We're just providing named constants to avoid magic strings.
/// A comment node
pub(crate) const COMMENT: &str = "comment";
/// A keyword argument in a function call (e.g., `key=value`)
pub(crate) const KEYWORD_ARGUMENT: &str = "keyword_argument";
/// A dictionary splat/unpacking operator (e.g., `**kwargs`)
pub(crate) const DICTIONARY_SPLAT: &str = "dictionary_splat";