We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/AEGISnetInc/TS-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
.dockerignore•817 B
# .dockerignore - Exclude files from Docker build context
# Dependencies (will be installed fresh in container)
node_modules/
# Build output (will be built fresh in container)
dist/
# Version control
.git/
.gitignore
# IDE and editor files
.vscode/
.idea/
*.swp
*.swo
*~
# Environment files (secrets should not be in image)
.env
.env.*
!.env.example
# Test files (not needed in production)
tests/
coverage/
.vitest/
jest.config.cjs
# Documentation (not needed in production)
docs/
*.md
!README.md
# OS files
.DS_Store
Thumbs.db
# Claude Code files
.claude/
# Docker files (avoid recursive context)
Dockerfile
docker-compose.yml
docker-compose*.yml
# Logs
*.log
npm-debug.log*
# TypeScript config (only needed for build stage, which copies it explicitly)
# tsconfig.json is copied explicitly in Dockerfile