Skip to main content
Glama
stopwords.py3.42 kB
"""English stop words for search indexing.""" from typing import Final # Common English stop words (179 words) STOP_WORDS: Final[frozenset[str]] = frozenset( { "a", "about", "above", "after", "again", "against", "all", "am", "an", "and", "any", "are", "as", "at", "be", "because", "been", "before", "being", "below", "between", "both", "but", "by", "can", "could", "did", "do", "does", "doing", "down", "during", "each", "few", "for", "from", "further", "had", "has", "have", "having", "he", "her", "here", "hers", "herself", "him", "himself", "his", "how", "i", "if", "in", "into", "is", "it", "its", "itself", "just", "me", "more", "most", "my", "myself", "no", "nor", "not", "now", "of", "off", "on", "once", "only", "or", "other", "our", "ours", "ourselves", "out", "over", "own", "same", "she", "should", "so", "some", "such", "than", "that", "the", "their", "theirs", "them", "themselves", "then", "there", "these", "they", "this", "those", "through", "to", "too", "under", "until", "up", "very", "was", "we", "were", "what", "when", "where", "which", "while", "who", "whom", "why", "will", "with", "would", "you", "your", "yours", "yourself", "yourselves", # Additional common stop words "also", "come", "even", "get", "got", "go", "going", "gone", "know", "like", "make", "made", "may", "might", "much", "must", "need", "new", "one", "see", "take", "thing", "think", "use", "used", "using", "want", "way", "well", "work", "year", "first", "last", "long", "great", "little", "old", "right", "big", "high", "small", "large", "next", "early", "young", "important", "public", "bad", "good", } ) # Domain-specific terms to preserve (don't stem these) PRESERVE_TERMS: Final[frozenset[str]] = frozenset( { "mcp", "json", "rpc", "sse", "stdio", "http", "https", "uri", "url", "api", "sdk", "cli", "llm", "ai", "ml", "aws", "fastmcp", "pydantic", } )

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/praveenc/mcp-server-builder'

If you have feedback or need assistance with the MCP directory API, please join our Discord server