Command Palette

Search for a command to run...

UnylyUnyly
Browse all

Westfield Spring Boot Standards Server

FreeNot checked

MCP server that serves Spring Boot development standards to Claude Code, providing resources and tools for controllers, services, resilience, testing, and more.

GitHubEmbed

About

MCP server that serves Spring Boot development standards to Claude Code, providing resources and tools for controllers, services, resilience, testing, and more.

README

MCP server that serves Spring Boot development standards to Claude Code.

Quick Start

uv sync
uv run context_server.py --transport sse

SSE Endpoint: http://localhost:8000/sse

Docker Deployment

docker build -t westfield-springboot-standards .
docker run -p 8000:8000 westfield-springboot-standards

Developer Configuration

Add .mcp.json to your project:

Local:

{
  "mcpServers": {
    "westfield-standards": {
      "url": "http://localhost:8000/sse"
    }
  }
}

Behind Gravitee:

{
  "mcpServers": {
    "westfield-standards": {
      "url": "https://api.yourcompany.com/mcp/springboot/sse"
    }
  }
}

Endpoints

Path Purpose
/sse MCP SSE endpoint for Claude Code
/health Health check for Kubernetes probes

Kubernetes Deployment

livenessProbe:
  httpGet:
    path: /health
    port: 8000
readinessProbe:
  httpGet:
    path: /health
    port: 8000

Gravitee Gateway Setup

Route /mcp/springboot/ssehttp://backend:8000/sse

Important: Configure for SSE (Server-Sent Events):

  • Disable request timeout or set very high
  • Disable response buffering
  • Enable keep-alive

Available Resources

Quick Start

Resource Description
standards://getting-started Condensed guide for new developers

Core Standards

Resource Description
standards://main Main instructions (intro.md)
standards://intro Package structure guide
standards://controller REST controller patterns
standards://service Service layer patterns
standards://dto DTO patterns
standards://restclient External API integration

Enterprise Standards

Resource Description
standards://observability Tracing, metrics, logging
standards://error-handling Error responses
standards://performance Caching, pooling, async

Resilience (full or focused)

Resource Description
standards://resilience Full resilience guide
standards://resilience-circuitbreaker Circuit breaker patterns
standards://resilience-retry Retry patterns
standards://resilience-bulkhead Bulkhead isolation

Testing (full or focused)

Resource Description
standards://testing Full testing guide
standards://testing-unit Unit test patterns
standards://testing-integration WireMock, TestContainers
standards://testing-contract Pact contract testing

Tools

  • list_standards() - List all available standards
  • search_standards(query) - Search for a keyword
  • get_quick_reference() - Quick reference card

from github.com/inso1234/mcp-springboot

Install Westfield Spring Boot Standards Server in Claude Desktop, Claude Code & Cursor

Recommended · one command, every IDE
unyly install westfield-spring-boot-standards-mcp-server

Installs into Claude Desktop, Claude Code, Cursor & VS Code — handles npx, uvx and build-from-source repos for you.

First time? Get the CLI: curl -fsSL https://unyly.org/install | sh

Or configure manually

Run in your terminal:

claude mcp add westfield-spring-boot-standards-mcp-server -- uvx --from git+https://github.com/inso1234/mcp-springboot westfield-claude-context

Step-by-step: how to install Westfield Spring Boot Standards Server

FAQ

Is Westfield Spring Boot Standards Server MCP free?

Yes, Westfield Spring Boot Standards Server MCP is free — one-click install via Unyly at no cost.

Does Westfield Spring Boot Standards Server need an API key?

No, Westfield Spring Boot Standards Server runs without API keys or environment variables.

Is Westfield Spring Boot Standards Server hosted or self-hosted?

Self-hosted: the server runs locally on your machine via the install command above.

How do I install Westfield Spring Boot Standards Server in Claude Desktop, Claude Code or Cursor?

Open Westfield Spring Boot Standards Server on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Related MCPs

Compare Westfield Spring Boot Standards Server with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All development MCPs