{
"mcpServers": {
"spring-boot-ai-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 303 days ago. 1 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for Spring Boot Ai Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Spring Boot implementation of the Model Context Protocol (MCP) server that provides cryptocurrency news analysis tools for AI assistants like Cursor and Cline.
graph TB
subgraph "AI Assistants"
A1[Cursor]
A2[Cline]
end
subgraph "Transport Layer"
T1[HTTP Transport]
T2[SSE Transport]
end
subgraph "Spring Boot MCP Server"
C1[McpJsonRpcController]
C2[McpStandardSseController]
S1[JsonRpcMcpServer]
S2[NewsService]
S3[TrackedTokenService]
end
subgraph "Data Layer"
D1[SQLite Database]
D2[Caffeine Cache]
end
A1 -->|HTTP| T1
A2 -->|SSE| T2
T1 --> C1
T2 --> C2
C1 --> S1
C2 --> S1
S1 --> S2
S1 --> S3
S2 --> D1
S2 --> D2
S3 --> D1
classDiagram
class JsonRpcMcpServer {
-NewsService newsService
-TrackedTokenService tokenService
-ObjectMapper objectMapper
-Map~String,SseEmitter~ sessions
+handleMessage(sessionId, message)
+createSession(sessionId) SseEmitter
+initialize(params) Map
+listTools() Map
+callTool(name, arguments) Map
}
class McpStandardSseController {
-JsonRpcMcpServer mcpServer
+handleSse() SseEmitter
+handleMessage(message, sessionId)
}
class NewsService {
-NewsRepository newsRepository
+searchNews(keyword) List~News~
+getLatestNews(limit) List~News~
+analyzeSentiment(token) SentimentAnalysis
}
class TrackedTokenService {
-TrackedTokenRepository tokenRepository
+trackToken(symbol) TrackedToken
+getTrackedTokens() List~TrackedToken~
}
McpStandardSseController --> JsonRpcMcpServer
JsonRpcMcpServer --> NewsService
JsonRpcMcpServer --> TrackedTokenService
sequenceDiagram
participant AI as AI Assistant<br/>(Cursor/Cline)
participant SSE as SSE Endpoint<br/>(/mcp/v1/sse)
participant MSG as Message Endpoint<br/>(/mcp/v1/messages)
participant MCP as JsonRpcMcpServer
participant SVC as Services<br/>(News/Token)
participant DB as SQLite DB
Note over AI,DB: SSE Transport Flow
AI->>SSE: GET /mcp/v1/sse
SSE->>SSE: Create session
SSE-->>AI: SSE Stream opened
SSE-->>AI: event: endpoint<br/>data: /mcp/v1/messages?sessionId=xxx
AI->>MSG: POST /mcp/v1/messages?sessionId=xxx<br/>{"method": "initialize", ...}
MSG->>MCP: handleMessage(sessionId, message)
MCP->>MCP: process initialize
MCP-->>SSE: Send response via SSE
SSE-->>AI: event: message<br/>data: {"result": {...}}
AI->>MSG: POST {"method": "tools/list", ...}
MSG->>MCP: handleMessage(sessionId, message)
MCP->>MCP: listTools()
MCP-->>SSE: Send tools list
SSE-->>AI: event: message<br/>data: {"result": {"tools": [...]}}
AI->>MSG: POST {"method": "tools/call",<br/>"params": {"name": "search_news",<br/>"arguments": {"keyword": "bitcoin"}}}
MSG->>MCP: handleMessage(sessionId, message)
MCP->>SVC: searchNews("bitcoin")
SVC->>DB: SELECT * FROM news WHERE ...
DB-->>SVC: News results
SVC-->>MCP: List<News>
MCP-->>SSE: Send results
SSE-->>AI: event: message<br/>data: {"result": {"content": [...]}}
Note over AI,DB: HTTP Transport Flow (Cursor)
AI->>MSG: POST /mcp/messages<br/>{"method": "initialize", ...}
MSG->>MCP: handleMessage(null, message)
MCP->>MCP: process initialize
MCP-->>MSG: Synchronous response
MSG-->>AI: HTTP 200<br/>{"result": {...}}
git clone https://github.com/dpolishuk/spring-boot-ai-mcp-server.git
cd spring-boot-ai-mcp-server
mvn clean ins
... [View full README on GitHub](https://github.com/dpolishuk/spring-boot-ai-mcp-server#readme)