S

Signal Mcp

googlarz
πŸ’¬ Communication
0 Views
0 Installs

🏠 - Full Signal messenger MCP server and CLI. Send/receive messages, manage groups and contacts, search history, handle attachments and reactions. Runs locally via signal-cli β€” no third-party servers.

Quick Install

One-Click IDE Configuration
claude_desktop_config.json
{
  "mcpServers": {
    "googlarz-signal-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "googlarz-signal-mcp"
      ]
    }
  }
}
Or

Using an AI coding agent (Claude Code, Cursor, etc.)? Copy a ready-made prompt that tells it to fetch the setup instructions and install this server for you.

Documentation Overview

signal-mcp

Tests PyPI Python License: MIT Glama

signal-mcp is a layer on top of signal-cli that adds everything it's missing: persistent message history, full-text search, a usable conversation view, contact name resolution, and an MCP server so Claude can read, search, and act on your Signal messages. 100% local β€” no cloud, no third-party services.

v1.29.0 β€” New sync_desktop / sync-desktop: incremental sync from Signal Desktop β€” fast on repeat calls, imports only new messages since the last run. Plus: incoming edits update the stored copy in-place, fixes for 500+ conversation crashes, improved store reliability.

What signal-cli is missing β€” and what signal-mcp adds

No history. signal-cli delivers a message and forgets it. signal-mcp stores every sent and received message β€” including messages sent from your phone β€” in a local SQLite database. It stays there. You can search it, browse it, export it, and ask Claude about it.

No search. signal-mcp adds an FTS5 full-text index. Find any message by keyword, filter by sender, page through results.

No conversation view. signal-cli has no concept of a thread. signal-mcp gives you paginated history per contact or group, unread counts, and last-message previews across all your chats.

Raw phone numbers everywhere. signal-mcp resolves +12025551234 β†’ Anna Schmidt in all output.

Manual daemon management. signal-mcp auto-starts the daemon on first use, restarts it if it crashes, and can install a background service (macOS LaunchAgent or Linux systemd) that captures every incoming message β€” even when you're not at your computer.

CLI and MCP: use whichever fits the task

The CLI and MCP server share the same store and daemon. You don't have to choose one:

TaskHow
Quick send from terminal or a cron jobsignal-mcp send +49... "done"
Set up background message capture (once)signal-mcp install-service
Import full history from Signal Desktop (once)signal-mcp import-desktop
Export a conversation to CSVsignal-mcp export --recipient +49... --format csv
Check unread messages and conversationssignal-mcp conversations
"What did I miss while I was offline?"Claude via MCP
"Find every message mentioning the invoice"Claude via MCP
"Summarize my week with Marco and draft a reply"Claude via MCP
"Who in my contacts hasn't messaged me in a month?"Claude via MCP
"Send the team: standup in 5 minutes"Claude via MCP or CLI

Features

  • Persistent SQLite store β€” every message saved locally, survives restarts
  • FTS5 full-text search β€” instant search across entire history
  • Signal Desktop import β€” migrate your complete history in one command (macOS/Linux/Windows)
  • Background service β€” captures messages automatically, even when Claude isn't running
  • Export β€” JSON or CSV with recipient and date filters
  • Contact name resolution β€” phone numbers resolved to names everywhere
  • 72 MCP tools β€” complete signal-cli coverage (see coverage matrix)
  • Incoming edit handling β€” when contacts edit their messages, the stored copy updates in-place
  • Full CLI β€” all the above without Claude, from your terminal
  • 100% local β€” your data never leaves your machine

Setup

Step 1 β€” Install signal-cli

signal-mcp is a front-end for signal-cli, which handles the Signal protocol.

macOS

brew install signal-cli

Linux Download the latest release from signal-cli releases, extract it, and put the signal-cli binary on your $PATH.

Step 2 β€” Link your Signal account

signal-cli needs to be linked to your existing Signal account (the same way you'd add a linked device in Signal mobile).

signal-cli link --name "MyMac"

This prints a QR code in your terminal. On your phone:

Signal β†’ Settings β†’ Linked Devices β†’ + β†’ scan the QR code

Once scanned, signal-cli is linked and ready.

Step 3 β€” Install signal-mcp

With uv (recommended):

uv tool install signal-mcp

With pip or pipx:

pip install signal-mcp
# or
pipx install signal-mcp

From source:

git clone https://github.com/googlarz/signal-mcp
cd signal-mcp
uv tool install .

Verify it works:

signal-mcp status
# β†’ Account : +1234567890
# β†’ Daemon  : stopped (port 7583)

Step 4 β€” Connect to Claude Code

claude mcp add signal -- signal-mcp serve

Restart Claude Code. Signal tools appear automatically β€” ask Claude "check my Signal messages" to confirm.

Manual config alternatives

Claude Code β€” global (~/.claude.json):

{
  "mcpServers": {
    "signal": {
      "command": "uvx",
      "args": ["signal-mcp", "serve"]
    }
  }
}

Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "signal": {
      "command": "uvx",
      "args": ["signal-mcp", "serve"]
    }
  }
}

Claude Desktop uses a restricted PATH β€” uvx resolves the tool without needing signal-mcp on your shell's PATH.

Per-project (.mcp.json):

{
  "mcpServers": {
    "signal": {
      "command": "uv",
      "args": ["run", "--directory", "/path/to/signal-mcp", "signal-mcp", "serve"]
    }
  }
}

Step 5 β€” (Optional) Import Signal Desktop history

If you use Signal Desktop on macOS, import your full message history in one command:

brew install sqlcipher       # required for decryption
signal-mcp import-desktop    # macOS will prompt for Keychain access β€” click Allow

Step 6 β€” (Optional) Enable background message capture

signal-cli only delivers messages when polled. Install the background service so nothing is missed:

signal-mcp install-service   # starts on login, works on macOS and Linux

MCP Tools

Messaging

ToolDescription
send_messageSend a text message to a contact. Supports quoted replies (quote_author, quote_timestamp).
send_group_messageSend a text message to a group. Supports quoted replies and @mentions.
send_attachmentSend a file or image to a contact. Supports captions and view-once.
send_group_attachmentSend a file or image to a group. Supports captions and view-once.
send_note_to_selfSave a note to yourself (Signal's saved messages).
receive_messagesPoll for new incoming messages and delivery receipts.
get_unreadGet messages not yet marked as read from local store.
edit_messageEdit a previously sent message (DM or group). Updates local store. Incoming edits from contacts also update the stored copy in-place.
delete_messageRemote-delete (unsend) a sent DM.
delete_group_messageRemote-delete a sent group message.
react_to_messageReact to a message with an emoji (DM or group). Set remove=true to unreact.
pin_messagePin a message in a DM or group conversation.
unpin_messageUnpin a message in a DM or group conversation.
admin_delete_messageGroup admin: delete any message in a group you administer.
set_typingSend a typing indicator to a contact.
send_read_receiptMark messages as read. Also updates local store.
send_stickerSend a sticker to a contact.
send_group_stickerSend a sticker to a group.

Configuration

ToolDescription
get_configurationRead current account settings (read receipts, typing indicators, link previews).
update_configurationToggle read receipts, typing indicators, link previews, or sealed sender indicators.

Sticker Packs

ToolDescription
list_sticker_packsList all installed sticker packs with pack_id and sticker IDs for send_sticker.
add_sticker_packInstall a sticker pack from a signal.art URL.
get_stickerRetrieve a single sticker image as base64.
upload_sticker_packUpload and publish a sticker pack from a local manifest.json or zip. Returns the signal.art URL.

Contacts

ToolDescription
list_contactsAll contacts with names and numbers. Supports optional search filter.
get_profileGet profile info for a contact.
update_contactSet a local display name for a contact.
block_contactBlock a contact.
unblock_contactUnblock a contact.
remove_contactRemove a contact from the local list.
update_profileUpdate your own name, about text, or avatar.
get_own_numberGet the Signal number this server is running as.

Groups

ToolDescription
list_groupsAll groups with members and metadata.
create_groupCreate a new Signal group.
join_groupJoin a group via invite link.
update_groupRename, add/remove members, promote/demote admins, set expiry timer.
leave_groupLeave a group.

History & Search

ToolDescription
list_conversationsAll conversations ordered by most recent message.
get_conversationMessage history with a contact or group. Supports since, limit, and offset for pagination.
search_messagesFull-text search (FTS5) across all stored messages. Supports sender, limit, and offset.
store_statsTotal message count, oldest and newest message dates.
mark_as_unreadMark one or more stored messages as unread.
get_user_statusCheck whether phone numbers are registered Signal users.
send_sync_requestRequest sync of messages/contacts/groups from your primary device.
send_contacts_syncPush your contacts list to all linked devices.
send_message_request_responseAccept or decline a message request from an unknown sender.

Security & Devices

ToolDescription
list_identitiesList identity keys and trust levels (safety numbers).
trust_identityTrust a contact's identity key after verifying their safety number.
list_devicesList all devices linked to your account.
add_deviceLink a new device using a device link URI.
remove_deviceUnlink a device by ID.
update_deviceRename a linked device.
list_accountsList all Signal accounts configured in signal-cli on this machine.
update_accountUpdate account settings: device name, discoverability, number sharing, username.
set_pinSet the Signal registration lock PIN.
remove_pinRemove the Signal registration lock PIN.
get_avatarRetrieve the avatar image for a contact or group as base64.

Polls

ToolDescription
create_pollCreate a poll in a group conversation.
vote_pollCast a vote on an existing poll.
terminate_pollEnd a poll and prevent further votes.

Disappearing Messages

ToolDescription
set_expiration_timerSet or disable disappearing messages for any DM or group.

Data & Import

ToolDescription
import_desktopOne-time full import of all historical messages from Signal Desktop. Requires sqlcipher.
sync_desktopIncremental sync from Signal Desktop β€” imports only messages newer than the last sync. Fast on repeat calls. First call behaves like import_desktop.
list_attachmentsList all locally downloaded attachments (photos, files received via Signal).
get_attachmentGet details about a specific downloaded attachment by filename.
clear_local_storeDelete ALL locally stored messages (requires confirm: true). Does not unsend from Signal.
delete_local_messagesDelete locally stored messages for one contact or group.
export_messagesExport stored messages as JSON or CSV. Supports recipient and since filters.

CLI Usage

# Status & daemon
signal-mcp status                          # account + daemon info
signal-mcp daemon                          # start daemon in foreground
signal-mcp stop                            # stop the daemon

# Send & receive
signal-mcp send +1234567890 "Hello!"
signal-mcp send-group <group_id> "Hey!"
signal-mcp note "Remember to buy milk"     # save a note to yourself
signal-mcp receive                         # poll once
signal-mcp receive --watch                 # keep watching (saves to store)

# Edit
signal-mcp edit +1234567890 <timestamp> "corrected text"
signal-mcp edit <group_id> <timestamp> "corrected text"

# Pin / unpin / admin-delete messages
signal-mcp pin +1234567890 <timestamp> +1234567890
signal-mcp unpin +1234567890 <timestamp> +1234567890
signal-mcp admin-delete <group_id> <timestamp> +1234567890

# Devices
signal-mcp update-device <device_id> "My Laptop"

# Contacts & groups
signal-mcp contacts
signal-mcp contacts --json
signal-mcp groups
signal-mcp conversations                   # list all chats with unread count + last message

# History & search
signal-mcp history +1234567890
signal-mcp history +1234567890 --limit 20
signal-mcp history +1234567890 --limit 20 --offset 20   # page 2
signal-mcp history +1234567890 --since 2024-01-01
signal-mcp search "keyword"
signal-mcp search "keyword" --sender +1234567890   # restrict to one contact
signal-mcp search "keyword" --limit 20
signal-mcp store-stats

# Export
signal-mcp export                                          # all messages as JSON to stdout
signal-mcp export messages.json                            # save to file
signal-mcp export messages.csv --format csv                # CSV format
signal-mcp export --recipient +1234567890 --format csv     # one conversation
signal-mcp export --since 2024-01-01                       # messages from date

# Signal Desktop import (macOS) β€” one-time full import
signal-mcp import-desktop
signal-mcp sync-desktop                    # incremental: only new messages since last sync

# Background service (macOS LaunchAgent or Linux systemd)
signal-mcp install-service    # auto-starts on login, captures all messages
signal-mcp uninstall-service

# MCP server (for Claude Code)
signal-mcp serve

Getting full message history

signal-cli only delivers new messages β€” it has no history API. Two ways to get history:

Going forward (captures everything from now on):

signal-mcp install-service   # background watcher, auto-starts on login

Retroactively (imports everything from Signal Desktop):

signal-mcp import-desktop    # macOS will prompt for Keychain access β€” click Allow

Run both for complete coverage.

Architecture

                    β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
                    β”‚  signal-cli daemon  (:7583)      β”‚
                    β”‚  Signal protocol / libsignal     β”‚
                    β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”˜
                               β”‚ sends/receivesβ”‚
                    β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β–Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”   β”‚ (when no service)
                    β”‚  background service  β”‚   β”‚
                    β”‚  LaunchAgent/systemd β”‚   β”‚
                    β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜   β”‚
                               β”‚ writes        β”‚
                    β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β–Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β–Όβ”€β”€β”€β”€β”€β”€β”€β”€β”
                    β”‚  SQLite store                     β”‚
                    β”‚  ~/.local/share/signal-mcp/       β”‚
                    β”‚  messages.db  (FTS5 indexed)      β”‚
                    β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
                                     β”‚ reads/writes
                   β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
                   β”‚                 β”‚                  β”‚
        β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β–Όβ”€β”€β”€β”€β”€β”€β” β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β–Όβ”€β”€β”€β”€β”€β”€β”€β” β”Œβ”€β”€β”€β”€β”€β”€β–Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
        β”‚  Claude Code /  β”‚ β”‚  signal-mcp    β”‚ β”‚  signal-mcp CLI β”‚
        β”‚  Claude Desktop β”‚ β”‚  serve (MCP)   β”‚ β”‚  (terminal)     β”‚
        β”‚  (asks Claude)  β”‚ β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
        β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

How it works:

get_unread is the primary "check for new messages" tool. If the background service is installed, it reads straight from the store (the service keeps it up to date). Otherwise it polls signal-cli first (debounced to once every 30 seconds) and includes a _warning suggesting signal-mcp install-service. list_conversations is a pure store read β€” fast, no polling.

The daemon starts automatically on first use. Attachments are saved to ~/Downloads/signal-attachments/.

signal-cli Coverage

signal-mcp wraps the signal-cli JSON-RPC daemon. Here's what is and isn't covered:

Covered (72 tools)

signal-cli commandsignal-mcp tool
sendsend_message, send_group_message, send_note_to_self, send_attachment, send_group_attachment, send_sticker, send_group_sticker
receivereceive_messages (streaming), get_unread
listContactslist_contacts
listGroupslist_groups
listDeviceslist_devices
listIdentitieslist_identities
listStickerPackslist_sticker_packs
getUserStatusget_user_status
getAttachmentget_attachment, list_attachments
getAvatarget_avatar
block / unblockblock_contact / unblock_contact
removeContactremove_contact
updateContactupdate_contact
trusttrust_identity
joinGroupjoin_group
quitGroupleave_group
updateGroupupdate_group, create_group
addDevice / removeDevice / updateDeviceadd_device / remove_device / update_device
sendReactionreact_to_message
sendTypingset_typing
sendReceiptsend_read_receipt
sendSyncRequestsend_sync_request
sendContactssend_contacts_sync
sendAdminDeleteadmin_delete_message
sendPinMessage / sendUnpinMessagepin_message / unpin_message
sendPollCreate / sendPollVote / sendPollTerminatecreate_poll / vote_poll / terminate_poll
sendMessageRequestResponsesend_message_request_response
remoteDeletedelete_message, delete_group_message
editMessageedit_message
updateProfileupdate_profile
updateConfigurationupdate_configuration, get_configuration
addStickerPackadd_sticker_pack
getStickerget_sticker
uploadStickerPackupload_sticker_pack
listAccountslist_accounts
updateAccountupdate_account
setPin / removePinset_pin / remove_pin
startChangeNumber / finishChangeNumberstart_change_number / finish_change_number
submitRateLimitChallengesubmit_rate_limit_challenge

Plus tools with no direct signal-cli equivalent: get_conversation, search_messages, list_conversations, store_stats, import_desktop, sync_desktop, export_messages, mark_as_unread, clear_local_store, delete_local_messages, prune_store.

Not covered

These commands are deliberately excluded β€” they are not feasible to implement as MCP tools:

signal-cli commandWhy
acceptCall / hangupCall / rejectCall / startCall / listCallsVoice/video calls require WebRTC and an active media stack β€” not feasible via MCP
register / verify / link / unregisterOne-time account setup; must be done before installing signal-mcp
deleteLocalAccountDataIrreversibly destroys all local Signal data; too destructive to expose
sendPaymentNotificationMobileCoin payments (requires a funded wallet; out of scope)

Development

git clone https://github.com/googlarz/signal-mcp
cd signal-mcp
uv sync --dev
uv run pytest
uv run pytest --cov --cov-report=term-missing

573 tests, 100% line coverage across all modules. All tests are fully mocked β€” no signal-cli installation or Signal account required to run them.

See CONTRIBUTING.md for how to add new tools.

License

MIT β€” see LICENSE.

Related MCP Servers

N
Nostr Mcp

☁️ - A Nostr MCP server that allows to interact with Nostr, enabling posting notes, and more.

πŸ’¬ Communication0 views
M
Mcp Twikit

🐍 ☁️ - Interact with Twitter search and timeline

πŸ’¬ Communication0 views
M
Mingle Mcp

πŸ“‡ ☁️ - Agent-to-agent networking. Your AI publishes what you need, matches with other people's agents, both humans approve before connecting. 6 tools, Ed25519 signed, shared network at api.aeoess.com.

πŸ’¬ Communication0 views
A
Agenticmail

πŸ“‡ 🏠 🍎 πŸͺŸ 🐧 - Real email and SMS for AI agents. Run a local mail server with disposable inboxes, send/receive real email, fetch verification codes, and drive a real inbox β€” all from your machine, no third-party email API. Install with npx @agenticmail/mcp.

πŸ’¬ Communication0 views

Engagement

Views
0
Installs
0
Upvotes
0

Views and upvotes are unique per visitor network (hashed IP). Installs count copy actions.

Status

Health: Not checked yet

We have not completed a health check for this listing yet.

Last checked: 7/29/2026, 12:28:57 PM

Unclaimed listing (imported or pending owner verification). Claim it β†’
β˜… Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Claim this listing

Promote this listing

Optional paid placement. Free listings stay free forever.

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.