spring-wiring-mcp

subnocte/spring-wiring-mcp
★ 0 stars Java AI/LLM Updated today
MCP server that statically resolves Spring Boot's implicit wiring so AI agents reach the right answer with fewer tokens
View on GitHub → 🔍 Audit Wallet Slippage →

Quick Install

Copy the config for your editor. Some servers may need additional setup — check the README.

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "spring-wiring-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "subnocte/spring-wiring-mcp"
      ]
    }
  }
}

README Excerpt

An MCP server that statically resolves Spring Boot's implicit wiring, so an AI coding agent can reach the correct answer using few tokens and without guessing. Generic code-search / code-analysis MCP servers can grep for `@GetMapping` and hand back a list of matches, but they don't understand Spring's own resolution semantics: which candidate actually wins once `@Primary`, `@Qualifier`, `@Profile`, conditional beans, and AOP proxies are taken into account. That's the gap this project targets — S