MCP Server for Mailim with Spring AI
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"ym-mcp-server": {
"env": {
"MAILIM_EMAIL": "YOUR_MAIL_ADDRESS",
"MAILIM_PASSWORD": "YOUR_PASSWORD"
},
"args": [
"-Dio.netty.resolver.dns.useJdkDnsServerAddressStreamProvider=true",
"-Dvertx.disableDnsResolver=true",
"-Djava.net.preferIPv4Stack=true",
"-jar",
"***PATH_TO_JAR_FILE***"
],
"command": "/opt/homebrew/Cellar/openjdk@21/21.0.7/bin/java"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Spring Boot (Java 21) server that implements the Model Context Protocol (MCP) to let AI clients (e.g., Claude Desktop) interact with a Mailim account. It exposes tools for login (with OTP), token refresh, listing unread emails,
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in communication
Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite
An MCP server that securely interfaces with your iMessage database via the Model Context Protocol (MCP), allowing LLMs to query and analyze iMessage conversations. It includes robust phone number validation, attachment processing, contact management, group chat handling, and full support for sending and receiving messages.
IMAP/SMTP email MCP server — 47 tools, IMAP IDLE push, multi-account, AI triage.
Email & SMS infrastructure for AI agents — send and receive real email and text messages programmatically
MCP Security Weekly
Get CVE alerts and security updates for Mailim 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 (Java 21) server that implements the Model Context Protocol (MCP) to let AI clients (e.g., Claude Desktop) interact with a Mailim account. It exposes tools for login (with OTP), token refresh, listing unread emails, and fetching message details.
You can visit my Medium post to read the details about the implementation.
mvn -U clean package
The output JAR file will be located in target/ folder (e.g., mcp-0.0.1-SNAPSHOT.jar).
In your Claude Desktop config, define an MCP server with command and env:
{
"mcpServers": {
"ym-mcp-server": {
"command": "/opt/homebrew/Cellar/openjdk@21/21.0.7/bin/java",
"args": [
"-Dio.netty.resolver.dns.useJdkDnsServerAddressStreamProvider=true",
"-Dvertx.disableDnsResolver=true",
"-Djava.net.preferIPv4Stack=true",
"-jar",
"***PATH_TO_JAR_FILE***"
],
"env": {
"MAILIM_EMAIL": "YOUR_MAIL_ADDRESS",
"MAILIM_PASSWORD": "YOUR_PASSWORD"
}
}
}
}
Typical flow:
Here are some screenshots from Claude Desktop: