TypeScript language service for advanced type checking, code completion, and refactoring.
## TypeScript Server MCP: Advanced TypeScript Intelligence The **TypeScript Server MCP** brings Microsoft's TypeScript language service into Google Antigravity, providing world-class TypeScript and JavaScript development experience with full type checking, intelligent completions, and powerful refactoring. ### Why TypeScript Server MCP? TypeScript has become the standard for large-scale JavaScript development. The tsserver MCP provides: - **Full Type Checking**: Catch errors before runtime - **IntelliSense**: Rich completions with type information - **Refactoring**: Safe code transformations - **JSDoc Support**: Documentation integration - **Project References**: Multi-package TypeScript projects ### Key Features #### 1. Type Intelligence Comprehensive type support: - Inferred type display - Generic type resolution - Union and intersection types - Conditional type evaluation #### 2. Error Detection Catch issues early: - Type mismatches - Missing properties - Null/undefined checks - Async/await errors #### 3. Refactoring Safe transformations: - Rename across files - Extract to function/variable - Convert to ES6 syntax - Auto-fix suggestions ### Configuration ```json { "mcpServers": { "tsserver": { "command": "typescript-language-server", "args": ["--stdio", "--mcp"] } } } ``` The TypeScript Server MCP transforms JavaScript/TypeScript development with enterprise-grade type safety.
{
"mcpServers": {
"tsserver": {}
}
}