An enterprise-grade MCP server with built-in federated identity support for SSO across providers and secure, scalable access management.
{
"mcpServers": {
"solesonic-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.
An enterprise-grade MCP server with built-in federated identity support for SSO across providers and secure, scalable access management.
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 8 days ago. 3 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.
Search, evaluate, and compare 17,000+ MCP servers — each scored on security, maintenance, and efficiency.
AI agents get on-chain identity, credentials, reputation, escrow, and persistent memory on XRPL.
MCP server for scanning and remediating hardcoded secrets using GitGuardian’s API. Detect over 500 secret types and prevent credential leaks before code goes public.
Trust infrastructure for AI agents — DIDs, reputation, verifiable credentials, USDC.
MCP Security Weekly
Get CVE alerts and security updates for Solesonic 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 HTTP MCP (Model Context Protocol) server powered by Spring AI. Secured as an OAuth2 Resource Server (JWT) with group- and scope-based authorization, built-in Jira tooling, and an external Atlassian Token Broker integration.
POST /mcpweather_lookupgroups → GROUP_<name> roles → ROLE_<role>ssl profile; TLS 1.2/1.3Note: OS environment variables take precedence over
.env.
# JWT verification (use one of the following depending on your IdP)
JWK_SET_URI=https://your-issuer/.well-known/jwks.json
# or
ISSUER_URI=https://your-issuer
# Jira tooling
JIRA_URL_TEMPLATE=https://your-domain.atlassian.net/browse/{key}
ATLASSIAN_TOKEN_BROKER_URL=https://your-token-broker.example.com/broker/atlassian/token
ATLASSIAN_TOKEN_BROKER_ISSUER_URI=https://your-authz-server/oauth2/token
ATLASSIAN_TOKEN_BROKER_CLIENT_ID=your-client-id
ATLASSIAN_TOKEN_BROKER_CLIENT_SECRET=your-client-secret
JIRA_CLOUD_ID_PATH=/path/to/your/cloud-id
Note: OS environment variables take precedence over
.env.
# Build
./mvnw clean verify
# Run (default profiles)
./mvnw spring-boot:run
ssl profile is active); otherwise http://localhost:9443Tip: To enable HTTPS locally, run with profiles
prod,ssl: ./mvnw spring-boot:run -Dspring-boot.run.profiles=prod,ssl
On JDK 25+, Netty requires native access for optimal performance. To suppress warnings about restricted method calls, add the following JVM option:
--enable-native-access=ALL-UNNAMED
Maven tests: Already configured in pom.xml via maven-surefire-plugin.
IntelliJ IDEA: Add to your run configuration under VM options:
--enable-native-access=ALL-UNNAMEDCommand line (spring-boot:run):
./mvnw spring-boot:run -Dspring-boot.run.jvmArguments="--enable-native-access=ALL-UNNAMED"
JAR execution:
java --enable-native-access=ALL-UNNAMED -jar target/solesonic-mcp-server-1.1.0.jar
Send an MCP initialize request (replace placeholders):
curl -k \
-H "Authorization: Bearer <YOUR_JWT_ACCESS_TOKEN>" \
-H "Content-Type: application/json" \
-X POST https://localhost:9443/mcp \
-d '{
"jsonrpc": "2.0",
"id": "1",
"method": "initialize",
"params": {"protocolVersion": "2024-11-05", "client": {"name": "curl", "version": "1.0"}}
}'
For a richer client experience, see Clients for MCP Inspector and Claude Desktop examples.