MCP System Bridge
The MCP System Bridge server provides cross-platform tools to interact with the operating system:
Open URLs: Launch one or multiple URLs in the default web browser
Clipboard Management: Copy text directly to the system clipboard
Date & Time Information: Retrieve comprehensive date/time details including ISO 8601 formats, Unix timestamps, week numbers, quarter information, leap year status, and time components
System Notifications: Send native system notifications across Windows, macOS, and Linux with customizable title, message, and app name
All operations are designed as safe, read-only tools for system integration through the Model Context Protocol.
Provides a tool runner called 'uvx' which is part of the uv package manager from Astral, used for running the MCP server.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@MCP System Bridgeopen https://github.com/leynier/mcp-sys-bridge"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCP System Bridge
mcp-sys-bridge is a local Model Context Protocol (MCP) server that lets MCP clients open web URLs, copy text to the clipboard, send native notifications, and inspect the local date and time.
Installation
The server requires Python 3.12 or newer and runs directly with uvx. Add it to your MCP client configuration:
{
"mcpServers": {
"mcp-sys-bridge": {
"command": "uvx",
"args": ["mcp-sys-bridge"]
}
}
}It can also be started manually:
uvx mcp-sys-bridgeFor a local checkout, use either entry point after uv sync:
uv run mcp-sys-bridge
uv run python -m mcp_sys_bridgeRelated MCP server: Command Executor MCP Server
Available tools
open_urls
Opens HTTP or HTTPS URLs in the default browser. URLs without a scheme use HTTPS. Other schemes are rejected so an MCP client cannot accidentally invoke arbitrary protocol handlers.
The tool preserves input order and duplicates. Each requested URL receives its own result:
[
{
"requested_url": "example.com:8080/docs",
"normalized_url": "https://example.com:8080/docs",
"opened": true,
"error": null
}
]An invalid URL or browser failure does not stop the rest of the batch.
copy_to_clipboard
Copies the provided text to the local clipboard. This replaces the current clipboard contents. Provider failures are returned to the client as MCP tool errors.
send_notification
Sends a local system notification with a title, message, optional application name, and a non-negative timeout. Provider failures are returned as MCP tool errors. Some operating systems may ignore the requested timeout.
get_current_date_info
Returns local calendar and clock fields, including ISO calendar values, English day and month names, timezone name, and UTC offset. iso_datetime is timezone-aware, for example 2026-08-08T20:30:00-06:00.
Platform notes
Windows and macOS normally provide the required browser, clipboard, and notification integrations.
Linux requires an active graphical session and compatible system providers. Clipboard support may require
wl-clipboard,xclip, orxsel, depending on the session; desktop notifications typically require a working notification service and D-Bus integration.Clipboard and notification tools are expected to fail cleanly in headless sessions where those providers are unavailable.
MCP annotations identify URL opening, clipboard writes, and notifications as side effects so compatible clients can apply their normal confirmation policy.
Development
make tests # Ruff plus tests with 100% line and branch coverage
make audit # Audit the locked environment for known vulnerabilities
make build # Build the wheel and source distributionTests mock browser, clipboard, and notification calls; they do not modify the developer's desktop state.
Changelog
0.2.0
Changed
open_urlsto return ordered structured results and restricted it to HTTP/HTTPS.Corrected MCP side-effect annotations and MCP error reporting.
Made date-time output timezone-aware and added timezone metadata.
Renamed the import package from
srctomcp_sys_bridge.Added functional tests, dependency auditing, cross-platform CI, and OIDC-based publishing.
src.* imports and the dictionary result previously returned by open_urls are not compatible with 0.2.0. The documented mcp-sys-bridge command remains unchanged.
0.1.5
Added the cross-platform
send_notificationtool.
0.1.4
Added tool annotations.
0.1.3
Added
get_current_date_info.
0.1.2
Changed
open_urltoopen_urlsfor batch URL opening.
0.1.0
Added URL opening and clipboard support.
License
MIT License. See license.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceA versatile Model Context Protocol server that enables AI assistants to manage calendars, track tasks, handle emails, search the web, and control smart home devices.23
- AlicenseBqualityDmaintenanceA Model Context Protocol server that allows secure execution of pre-approved commands, enabling AI assistants to safely interact with the user's system.11122ISC
- Alicense-qualityDmaintenanceA comprehensive Model Context Protocol server implementation that enables AI assistants to interact with file systems, databases, GitHub repositories, web resources, and system tools while maintaining security and control.492MIT
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
Personal assistant MCP server with search, execute, packages, jobs, secrets, and integrations.
MCP server for Clipkit — gives AI agents a video toolbox via the Clipkit schema.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/leynier/mcp-sys-bridge'
If you have feedback or need assistance with the MCP directory API, please join our Discord server