Jade
Related Servers
Alternatives to Jade
- AlicenseNot gradedqualityFmaintenanceRuns a language server and provides tools for communicating with it. Language servers excel at tasks that LLMs often struggle with, such as precisely understanding types, understanding relationships, and providing accurate symbol references.1,591BSD 3-Clause
- AlicenseAqualityAmaintenanceA fully featured coding agent that uses symbolic operations (enabled by language servers) and works well even in large code bases. Essentially a free to use alternative to Cursor and Windsurf Agents, Cline, Roo Code and others.2942,914 PyPI29,226MIT
Related Servers
- AlicenseCqualityBmaintenanceLocal-first MCP runtime for coding agents with bounded workspace access, content-preconditioned writes, AST search, LSP navigation and diagnostics, and Git status/diff. Designed to give coding agents useful repository access without treating unrestricted shell access as the default integration boundary.2132MIT
- AlicenseAqualityAmaintenanceMCP server that keeps language server sessions warm and routes multiple languages through one process. Agents get persistent cross-file awareness, speculative execution (simulate edits before writing to disk), and 20 skills that encode correct multi-step operations like safe rename, blast-radius analysis, and end-to-end refactoring. Single Go binary, no runtime dependencies.50125MIT
- AlicenseNot gradedqualityAmaintenanceLocal-first code intelligence MCP server that enables coding agents to search code, inspect structure, read exact ranges, and explore Git history with explicit token budgets.23Apache 2.0
- AlicenseNot gradedqualityBmaintenanceProvides IDE-like coding capabilities for AI agents via MCP, enabling semantic code retrieval, symbol-level editing, refactoring, and navigation across many programming languages.MIT
- AlicenseNot gradedqualityBmaintenanceLocal-first code intelligence and safety layer for AI coding agents. MCP server exposes dependency graph, impact analysis, and AST-compressed repo context, backed by typed local memory, patch-scope safety gates, and git-independent transaction rollback.1MIT
- AlicenseNot gradedqualityAmaintenanceLocal-first MCP server that provides project context, verification gates, and structured tools for coding agents to discover knowledge, run diagnostics, and execute allowlisted commands within a repository.24 npmMIT
TDQS
Scored across 12 tools
Each tool targets a distinct operation: file creation/deletion/reading, text replacement/insertion/atomic batch edits, declaration lookup vs. general grep, and command execution vs. test running. Even closely related tools like replace_text and insert are clearly separated by their use cases and the apply tool explicitly aggregates them. No ambiguity among the 12 tools.
All tool names follow a consistent snake_case verb_pattern (delete_file, read_range, find, create_file, grep, declare_command, run_tests, apply, check, insert, replace_text, run_command). While some verbs lack explicit noun objects, the pattern is uniform and predictable across the entire set.
With 12 tools, the server is well-scoped for its purpose as a code editing and validation assistant. Each tool covers a necessary operation without redundancy, fitting comfortably within the typical 3-15 range for a focused toolset.
The tool surface covers the core lifecycle: file creation, deletion, reading, editing (replace/insert/apply), searching (grep/find), and command execution (check/run_tests/run_command/declare_command). Minor gaps exist, such as no explicit file listing or rename operation, but these are likely out of scope and do not create workflow dead ends for typical coding tasks.