We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ViperJuice/Code-Index-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
.gitignore•3.11 kB
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
.pytest_cache/
.coverage
.tox/
.mypy_cache/
.dmypy.json
dmypy.json
.pyre/
.ruff_cache/
# Virtual environments
venv/
ENV/
env/
.venv
.devcontainer/.venv
# Database
*.sqlite
*.sqlite3
*.db
# Index artifacts (tracked selectively)
# code_index.db is too large for Git - use scripts/download_index.sh
!data/indexes/vector_index.qdrant/
!.index_metadata.json
# Environment variables
.env
.env.local
.env.*.local
.env.production
.env.development
# IDEs and editors
.vscode/
.idea/
*.swp
*.swo
*~
.project
.pydevproject
# OS
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# Architecture build outputs
architecture/out/
# Node.js (for any JS tooling)
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Logs
*.log
logs/
# Temporary files
*.tmp
*.temp
.cache/
# =============================================================================
# AI AGENT GUIDANCE AND DEVELOPER TOOLS - SHARED WITH TEAM
# =============================================================================
# These files help other developers understand and work with the project:
#
# CLAUDE.md - AI agent navigation stub
# AGENTS.md - Primary AI agent configuration
# .claude/commands/ - Custom Claude Code commands
# .claude.json - Claude Desktop integration example
# .mcp.json - MCP server tool definitions
#
# DO NOT add these to .gitignore - they are valuable for team collaboration
# =============================================================================
# LOCAL AI SETTINGS - USER-SPECIFIC (DO IGNORE)
# =============================================================================
.claude/settings.local.json
.claude/user-*.json
.mcp.local.json
# Personal IDE configuration (user-specific - DO IGNORE)
.cursor/
.vscode/settings.json
.idea/workspace.xml
# Local development databases and data (DO IGNORE)
# Note: Main index artifacts are tracked above
test_*.db
cache_*.db
*.tmp.db
*.backup.db
# Local environment files with secrets (DO IGNORE)
.env
.env.local
.env.development.local
.env.production.local
# =============================================================================
# TEMPLATE/EXAMPLE FILES - SHARED WITH TEAM
# =============================================================================
# Keep these files so other developers have configuration examples:
!.env.example
!.env.*.example
!.env.*.template
!docker-compose.*.example
!config.*.template
# Local test data and results (DO IGNORE)
test_workspace/
tests/results/
tests/coverage/
rapid_test_report.json
# Local data directories (DO IGNORE)
data/
backup/
cache/
# Test repositories (git submodules)
tests/fixtures/repos/
# MCP Index (tracked for fast setup)
.mcp-index/code_index.db
.mcp-index/.index_metadata.json
# Local index storage (3.1GB of data - DO NOT COMMIT)
.indexes/
test_repos/
temp_cookbook/
testing-env/