Editor-grade TypeScript, Markdown, and JSON intelligence for coding agents.
MCPpedia last refreshed this data
io.github.tyler-mitchell/type-atlas is an MCP server that editor-grade TypeScript, Markdown, and JSON intelligence for coding agents. Its tool list has not been published yet over stdio and http, requires no API key, and scores 59/100 on MCPpedia's security, maintenance and efficiency rubric.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"type-atlas": {
"args": [
"--yes",
"@type-atlas/mcp@latest"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Type Atlas gives coding agents editor-grade TypeScript, Markdown, and JSON navigation through the Model Context Protocol. It runs locally over stdio and uses the TypeScript project selected for each file, so definitions, references, diagnostics, code actions, and source ranges reflect the repository an agent is
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@type-atlas/mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @type-atlas/mcp against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in developer-tools / writing
Context7 Platform -- Up-to-date code documentation for LLMs and AI code editors
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for io.github.tyler-mitchell/type-atlas and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Type Atlas is what I have all my code agents use across all of my TypeScript projects for all code navigation needs. Most of those projects are monorepos. Some are large and complex enough that understanding how a change fits into the rest of the system is a real part of the work. This tool was designed as a complete replacement for an agent's default code navigation methodology.
I've been iterating on this tool for months based on how my own coding agents actually work in my projects. Most of what Type Atlas does, exists because I kept seeing the same problems:
As projects grow, these problems compound and start showing up directly in the quality of the code agents write.
Coding agents navigate code through file reads and string searches by default. That gives them source text and leaves the model to reconstruct relationships that the TypeScript language service already knows.
Type Atlas gives the agent direct access to that semantic information:
A text match is still useful when text is what the agent is looking for. It is a weak substitute for semantic navigation when the question is about the program itself.
Large codebases contain useful code that an agent has no reason to know by name. String search works best after the agent already knows enough vocabulary to formulate the search.
Type Atlas gives it other ways in:
This is especially useful in large monorepos. Existing helpers and established implementations are easier to discover before the agent