From 4d2ba71b64303709e4712d5cbb2eed82882a2bab Mon Sep 17 00:00:00 2001 From: Johannes Maron Date: Mon, 15 Jun 2026 17:34:42 +0200 Subject: [PATCH 1/2] Update branding --- README.md | 23 +++++++++++++++++++++++ docs/images/icon.svg | 2 +- docs/images/logo-dark.svg | 13 ++++++++++--- docs/images/logo-light.svg | 11 +++++++++-- mkdocs.yml | 6 +++--- 5 files changed, 46 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 1fbcf8f..595d182 100644 --- a/README.md +++ b/README.md @@ -61,6 +61,29 @@ You can also talk to a local agent (needs [Ollama]): uvx 'voip[cli]' sip sips:alice:********@sip.example.com agent --initial-prompt "Hi, I am looking for a Mr. Ron, first name Mo?" ``` +### MCP + +The `voip` package ships a ready-made [Model Context Protocol (MCP)][mcp] server +that exposes tools to make phone calls on your behalf to any MCP client. + +```json +{ + "mcpServers": { + "VoIP": { + "type": "stdio", + "command": "uvx", + "args": [ + "voip[mcp]", + "mcp" + ], + "env": { + "SIP_AOR": "sip:****:****@example.com:5060?transport=tcp" + } + } + } +} +``` + ### Python API ```console diff --git a/docs/images/icon.svg b/docs/images/icon.svg index 6390c4b..f38e1fa 100644 --- a/docs/images/icon.svg +++ b/docs/images/icon.svg @@ -1,4 +1,4 @@ - diff --git a/docs/images/logo-dark.svg b/docs/images/logo-dark.svg index de55087..8cefb36 100644 --- a/docs/images/logo-dark.svg +++ b/docs/images/logo-dark.svg @@ -1,8 +1,15 @@ + viewBox="0 0 1280 640" fill="black"> + + + + + + + - - + + Python diff --git a/docs/images/logo-light.svg b/docs/images/logo-light.svg index 8bf5a46..de5d369 100644 --- a/docs/images/logo-light.svg +++ b/docs/images/logo-light.svg @@ -1,7 +1,14 @@ + + + + + + + - - + + Python diff --git a/mkdocs.yml b/mkdocs.yml index 1053326..a4d1322 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -39,18 +39,18 @@ theme: logo: images/icon.svg palette: - media: "(prefers-color-scheme)" - primary: yellow + primary: pink toggle: icon: material/brightness-auto name: Switch to light mode - media: "(prefers-color-scheme: light)" - primary: yellow + primary: pink scheme: default toggle: icon: material/brightness-7 name: Switch to dark mode - media: "(prefers-color-scheme: dark)" - primary: yellow + primary: pink scheme: slate toggle: icon: material/brightness-4 From 7e088a4b6d299d98616535d2c1c7d0236e7ad14d Mon Sep 17 00:00:00 2001 From: Johannes Maron Date: Mon, 15 Jun 2026 17:54:04 +0200 Subject: [PATCH 2/2] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 595d182..653300b 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ uvx 'voip[cli]' sip sips:alice:********@sip.example.com agent --initial-prompt " ### MCP -The `voip` package ships a ready-made [Model Context Protocol (MCP)][mcp] server +The `voip` package ships a ready-made [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) server that exposes tools to make phone calls on your behalf to any MCP client. ```json