Overview
Omi Uber MCP is a server designed for Omi devices that facilitates calling Uber services.
To use Omi Uber MCP, install it via Smithery by running the command: npx -y @smithery/cli install @maximilien/omi-uber-mcp --client claude.
- Integration with Uber services for Omi devices. - Easy installation via Smithery. - Supports automation of Uber calls from Omi devices.
- Automating ride requests from Omi devices.
- Integrating Uber functionalities into smart home systems.
- Enhancing user experience by simplifying Uber service access.
Add to your AI client
Use these steps to connect Omi Uber Mcp in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"omi-uber-mcp-maximilien": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-omi-uber-mcp-maximilien"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"omi-uber-mcp-maximilien": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-omi-uber-mcp-maximilien"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"omi-uber-mcp-maximilien": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-omi-uber-mcp-maximilien"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"omi-uber-mcp-maximilien": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-omi-uber-mcp-maximilien"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"omi-uber-mcp-maximilien": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-omi-uber-mcp-maximilien"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"omi-uber-mcp-maximilien": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-omi-uber-mcp-maximilien"
]
}
}
}FAQ
What devices are compatible with Omi Uber MCP?
Omi Uber MCP is designed for Omi devices that support server integration.
Is there a cost associated with using Omi Uber MCP?
Omi Uber MCP is open-source and free to use under the MIT license.
How can I contribute to the Omi Uber MCP project?
Contributions can be made through the GitHub repository at https://github.com/maximilien/omi-uber-mcp.