To install and configure this MCP server, add the following configuration to your MCP client settings:
{
"mcpServers": {
"airbnb": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/MuhWaqas/mcpserverexample.git",
"mcp-server"
]
}
}
}- mcpServers: Define the MCP server configuration
- airbnb: Server name (can be customized)
- command: The command to run (uvx in this case)
- args: Arguments passed to the command
--from: Specifies the source as a git repository- Repository URL:
git+https://github.com/MuhWaqas/mcpserverexample.git - Entry point:
mcp-server
- airbnb: Server name (can be customized)