OneMCP is a native macOS application that aggregates multiple Model Context Protocol (MCP) servers into a unified interface. It provides a seamless way to manage and interact with multiple MCP servers through a single endpoint, complete with a modern SwiftUI interface and system tray integration.
{
"mcpServers": {
"onemcp": {
"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.
OneMCP is a native macOS application that aggregates multiple Model Context Protocol (MCP) servers into a unified interface. It provides a seamless way to manage and interact with multiple MCP servers through a single endpoint, complete with a modern SwiftUI interface and system tray integration.
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 251 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.
Dynamic problem-solving through sequential thought chains
A Model Context Protocol server for searching and analyzing arXiv papers
An open-source AI agent that brings the power of Gemini directly into your terminal.
The official Python SDK for Model Context Protocol servers and clients
MCP Security Weekly
Get CVE alerts and security updates for Onemcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
OneMCP is a native macOS application that aggregates multiple Model Context Protocol (MCP) servers into a unified interface. It provides a seamless way to manage and interact with multiple MCP servers through a single endpoint, complete with a modern SwiftUI interface and system tray integration.
Download the latest release from the Releases page.
Clone the repository:
git clone https://github.com/your-repo/onemcp.git
cd onemcp
Build the application:
make app
Install to Applications folder:
cp -r OneMCP.app /Applications/
For development, you can run the app directly:
make run
OneMCP stores its configuration in ~/Library/Application Support/OneMCP/config.json. The application provides a graphical interface for configuration, but you can also edit the JSON directly.
OneMCP supports three types of upstream servers:
{
"id": "uuid-here",
"name": "My StdIO Server",
"type": "stdio",
"enabled": true,
"config": {
"stdio": {
"command": "/path/to/server",
"arguments": ["--arg1", "value1"],
"environment": {
"KEY": "value"
},
"workingDirectory": "/path/to/working/dir"
}
}
}
{
"id": "uuid-here",
"name": "My SSE Server",
"type": "sse",
"enabled": true,
"config": {
"sse": {
"url": "http://localhost:3001/sse",
"headers": {
"Authorization": "Bearer token"
}
}
}
}
{
"id": "uuid-here",
"name": "My HTTP Server",
"type": "streamable-http",
"enabled": true,
"config": {
"streamableHttp": {
"url": "http://localhost:3002",
"headers": {
"Authorization": "Bearer token"
}
}
}
}
{
"server": {
"port": 3000,
"host": "localhost",
"enableCors": true
},
"ui": {
"startMinimized": false,
"showInDock": true,
"enableNotifications": true,
"theme": "system"
},
"logging": {
"level": "info",
"enableFileLogging": true,
"maxLogSize": 10000000
}
}