mcp-refactor-typescript
A TypeScript/JavaScript refactoring MCP server that uses the TypeScript compiler to perform safe, type-aware code transformations such as renaming, extracting functions, and organizing imports across your codebase.
README
MCP Refactor TypeScript
A Model Context Protocol (MCP) server that provides comprehensive TypeScript/JavaScript refactoring capabilities powered by the TypeScript compiler. Perform complex code transformations with compiler-grade accuracy and type-safety.
Overview
MCP Refactor TypeScript exposes TypeScript's powerful refactoring engine through the Model Context Protocol, enabling AI assistants and other MCP clients to perform sophisticated code transformations that would be impossible or error-prone to do manually.
Key Features:
- Type-Aware Refactoring - Uses TypeScript's compiler for accurate, safe transformations
- Cross-File Support - Automatically updates imports, exports, and references across your entire codebase
- Safe - Preview mode for all destructive operations
- Detailed Reporting - See exactly what changed with file paths and line numbers
Installation
Via npm (Recommended)
npm install -g mcp-refactor-typescript
The package will be globally installed and available as mcp-refactor-typescript.
From Source
git clone https://github.com/Stefan-Nitu/mcp-refactor-typescript.git
cd mcp-refactor-typescript
bun install
bun run build
ā ļø Requires Bun v1.3.8+ (development) and Node.js v18+ (runtime)
Quick Start
With Claude Desktop
Add to your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"mcp-refactor-typescript": {
"command": "npx",
"args": ["-y", "mcp-refactor-typescript"]
}
}
}
Or if installed globally:
{
"mcpServers": {
"mcp-refactor-typescript": {
"command": "mcp-refactor-typescript"
}
}
}
Restart Claude Desktop and you'll have access to all refactoring tools.
With MCP Inspector
Test the server interactively:
npx @modelcontextprotocol/inspector npx -y mcp-refactor-typescript
Or if installed globally:
npx @modelcontextprotocol/inspector mcp-refactor-typescript
Open http://localhost:5173 to explore available tools and test refactoring operations.
Available Tools (v2.0)
The server exposes 4 grouped tools with 15 operations total. Each tool has a specific domain and uses the operation parameter to specify the action.
Tool Groups
| Tool | Operations | Use When |
|---|---|---|
| file_operations | rename_file, move_file, batch_move_files |
Renaming/moving files, reorganizing code structure |
| code_quality | organize_imports, fix_all, remove_unused |
Before commits, after refactoring, cleanup tasks |
| refactoring | rename, extract_function, extract_constant, extract_variable, infer_return_type |
Renaming symbols, reducing duplication, improving structure |
| workspace | find_references, refactor_module, cleanup_codebase, restart_tsserver |
Understanding impact, large-scale refactoring, TypeScript issues |
Operations Reference
| Operation | Tool | Description |
|---|---|---|
| rename_file | file_operations | Rename file in-place with automatic import path updates |
| move_file | file_operations | Move file to different directory with import updates |
| batch_move_files | file_operations | Move multiple files atomically |
| organize_imports | code_quality | Sort and remove unused imports (preserves side-effects) |
| fix_all | code_quality | Apply all available TypeScript quick fixes |
| remove_unused | code_quality | Remove unused variables and imports safely |
| rename | refactoring | Rename symbols across all files with automatic import/export updates |
| extract_function | refactoring | Extract code to function with auto-detected parameters/types |
| extract_constant | refactoring | Extract magic numbers/strings to named constants |
| extract_variable | refactoring | Extract expressions to local variables |
| infer_return_type | refactoring | Add return type annotations automatically |
| find_references | workspace | Find all usages with type-aware analysis |
| refactor_module | workspace | Complete workflow: move + organize + fix |
| cleanup_codebase | workspace | Clean entire codebase (organize + optionally delete unused) |
| restart_tsserver | workspace | Restart TypeScript server for fresh project state |
š Detailed Documentation: See docs/OPERATIONS.md for full examples, best practices, and workflow patterns for each operation. Also available via MCP resource
operations://catalog.
Response Format
All tools return structured JSON:
{
"tool": "refactoring",
"operation": "rename",
"status": "success" | "error",
"message": "Human-readable summary",
"data": {
"filesChanged": ["list", "of", "modified", "files"],
"changes": [
{
"file": "filename.ts",
"path": "/absolute/path/filename.ts",
"edits": [
{
"line": 42,
"column": 10,
"old": "oldText",
"new": "newText"
}
]
}
]
},
"preview": { // Only when preview: true
"filesAffected": 5,
"estimatedTime": "< 1s",
"command": "Run again with preview: false to apply changes"
},
"nextActions": [ // Suggested follow-up operations
"organize_imports - Clean up import statements",
"fix_all - Fix any type errors"
]
}
Example Usage
Rename a symbol
{
"tool": "refactoring",
"params": {
"operation": "rename",
"filePath": "src/user.ts",
"line": 10,
"text": "getUser",
"name": "getUserProfile",
"preview": false
}
}
Organize imports
{
"tool": "code_quality",
"params": {
"operation": "organize_imports",
"filePath": "src/index.ts"
}
}
Extract function
{
"tool": "refactoring",
"params": {
"operation": "extract_function",
"filePath": "src/calculate.ts",
"line": 15,
"text": "x + y",
"name": "addNumbers"
}
}
Find references
{
"tool": "workspace",
"params": {
"operation": "find_references",
"filePath": "src/utils.ts",
"line": 5,
"text": "helper"
}
}
Advanced Usage
Preview Mode
All destructive operations support preview mode:
{
"filePath": "src/user.ts",
"line": 10,
"column": 5,
"name": "getUserProfile",
"preview": true
}
Returns what would change without modifying any files.
Entry Points for Cleanup
Required when deleteUnusedFiles: true - prevents accidental deletion with wrong defaults.
Safe mode (organize imports only) uses automatic defaults. Aggressive mode requires explicit entry points:
{
"operation": "cleanup_codebase",
"directory": "src",
"deleteUnusedFiles": true,
"entrypoints": [
"src/main\\.ts$", // Main entry point
"src/cli\\.ts$", // CLI entry
".*\\.test\\.ts$", // Test files (auto-included in defaults)
"scripts/.*\\.ts$" // Script files
]
}
ā ļø Files not reachable from entry points will be DELETED. Always use preview: true first.
Batch Operations
Move multiple files atomically:
{
"files": [
"src/utils/string.ts",
"src/utils/number.ts",
"src/utils/array.ts"
],
"targetFolder": "src/lib"
}
All imports update automatically, all files move together or not at all.
Development
Project Structure
mcp-refactor-typescript/
āāā src/
ā āāā index.ts # MCP server entry point
ā āāā operation-name.ts # Operation name enum (single source of truth)
ā āāā registry.ts # Operation registry
ā āāā operations/ # Refactoring operations
ā ā āāā rename.ts # Rename operation
ā ā āāā move-file.ts # Move file operation
ā ā āāā extract-function.ts # Extract function operation
ā ā āāā ... # Other operations
ā āāā language-servers/
ā ā āāā typescript/ # TypeScript server client
ā ā āāā tsserver-client.ts # Direct tsserver communication
ā ā āāā tsserver-types.ts # Protocol type definitions
ā āāā utils/
ā āāā logger.ts # Pino logger (stderr only)
ā āāā validation-error.ts # Zod error formatting
āāā test/
ā āāā fixtures/ # Test TypeScript files
āāā docs/ # Architecture & testing docs
Testing
# Run all tests
bun test
# Run specific test file
bun test --filter rename
# Run in watch mode
bun test --watch
# Type checking
bun run typecheck
# Linting
bun run lint
Test Coverage
- Integration tests covering all operations
- Unit tests for validation, error handling, and edge cases
- E2E tests for server startup and initialization
- All tests use real TypeScript compiler (no mocks)
Requirements
- Node.js >= 18.0.0
- TypeScript project with
tsconfig.json - Valid TypeScript/JavaScript files
- ESM module resolution (
.jsextensions in imports)
Architecture
The server uses TypeScript's native tsserver for all refactoring operations:
- Server Starts: Detects TypeScript files and starts
tsserver - Indexing: TypeScript indexes project files (1-5 seconds for most projects)
- Operations: Each tool sends protocol messages to
tsserver - Results: Changes are returned as structured JSON with full details
Key Design Decisions:
- Direct
tsservercommunication (not VS Code LSP) - One
tsserverinstance shared across all operations - All logging to stderr (MCP protocol compliance)
See docs/ARCHITECTURE.md for detailed architecture information.
Documentation
- OPERATIONS.md - Complete operations reference with examples
- ARCHITECTURE.md - MCP server architecture and patterns
- TESTING.md - Testing strategies and patterns
- TESTING-NOTES.md - Test workspace setup requirements
- ERROR-HANDLING.md - Error handling patterns
- MCP-TYPESCRIPT-README.md - TypeScript SDK reference
Troubleshooting
TypeScript Server Not Starting
If operations fail with "TypeScript server not running":
- Check that you have TypeScript files in your project
- Verify
tsconfig.jsonexists and is valid - Run
restart_tsservertool to force a restart - Check logs in stderr for detailed error messages
Incomplete References
If find_references or rename misses some usages:
- Wait for TypeScript to finish indexing (check for "Project loaded" in logs)
- Ensure all files are included in
tsconfig.json - Fix any TypeScript errors that might prevent analysis
- Use
restart_tsserverafter making project configuration changes
Import Paths Not Updating
If move_file doesn't update some imports:
- Ensure imports use
.jsextensions (ESM requirement) - Check that moved file is part of TypeScript project
- Verify
tsconfig.jsonmodule resolution settings - Look for dynamic imports that TypeScript can't analyze
Contributing
- Fork the repository
- Create a feature branch
- Write tests first (TDD approach)
- Implement the feature
- Ensure all tests pass (
bun test) - Run linting (
bun run lint) - Submit a pull request
License
MIT
Related Projects
- Model Context Protocol - MCP specification and documentation
- MCP TypeScript SDK - SDK used by this server
- MCP Servers - Official MCP server implementations
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.