Crixin Voice
NPM · CRIXIN · 2 COMPONENTS · SCANNED SEP 20
Give your AI a real phone: place calls, send SMS, fetch recordings and transcripts. Local or hosted.
Available components
How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score → Why this is hard to score →
Supply Chain Security98
- No malware found by supply-chain analysis.Pass
- No known CVEs affecting this package version or its production dependencies.Pass
- No install/post-install scripts declared.Pass
- 36 of 109 dependencies flagged as unhealthy. View diagnostics → Partial
Provenance & Transparency48
- Source repository is publicly reachable at the declared URL. View diagnostics → Pass
- Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
- Clear OSI-approved license (MIT).Pass
- Actively maintained (last published 15 days ago).Pass
- Publishes a security disclosure policy (SECURITY.md).Pass
Schema Quality & AI Usability67
- AI-judged instruction clarity (good).Pass
- Context-footprint check failed: tool/resource definitions use about 839 tokens (~139/item across 6 items; 6 tools + 0 resources), over budget; trim descriptions and params. See how to fix → Fail
- Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management53
- Stability observed for 16 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage87
- 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
- 61% of tool parameters carry a description.Partial
Tool Safety100
- No prompt-injection markers were found in the server instructions, tool names or descriptions we captured.Pass
- All 1 tool(s) whose name or description implies an irreversible operation declare an MCP destructiveHint annotation.Pass
- An AI judge read all 6 captured unit(s) of tool text and found none that tries to manipulate the model reading it.Pass
Capabilities100
- Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
How do I install the Crixin Voice MCP server?
Crixin Voice runs locally as an npm package, launched with npx -y crixin. Ready-made configuration for Claude, Cursor, VS Code, Codex and 5 more is on this page, copied from each client's own documentation.
npm · crixin
claude mcp add com-crixin-voice -- npx -y crixin
{
"mcpServers": {
"com-crixin-voice": {
"command": "npx",
"args": [
"-y",
"crixin"
]
}
}
} {
"servers": {
"com-crixin-voice": {
"command": "npx",
"args": [
"-y",
"crixin"
]
}
}
} codex mcp add com-crixin-voice -- npx -y crixin
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"com-crixin-voice": {
"type": "local",
"command": [
"npx",
"-y",
"crixin"
],
"enabled": true
}
}
} openclaw mcp add com-crixin-voice --command npx --arg -y --arg crixin
mcp_servers:
com-crixin-voice:
command: "npx"
args: ["-y", "crixin"] {
"McpServers": {
"com-crixin-voice": {
"Transport": "stdio",
"Command": "npx",
"Arguments": [
"-y",
"crixin"
]
}
}
} assistant mcp add com-crixin-voice -t stdio -c npx -a -y crixin
{
"mcpServers": {
"com-crixin-voice": {
"command": "npx",
"args": [
"-y",
"crixin"
]
}
}
} Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.
- 18 Sept 26 +1
No change was recorded against any check on this day. Stability & Change Management went from 43 to 47. That category is still filling its 30-day observation window: 13 days of observed history at the previous scan, 14 at this one. The score rises as the window fills, whether or not the server changes.
- 16 Sept 26 +1
No change was recorded against any check on this day. Stability & Change Management went from 37 to 40. That category is still filling its 30-day observation window: 11 days of observed history at the previous scan, 12 at this one. The score rises as the window fills, whether or not the server changes.
- 14 Sept 26 +1
No change was recorded against any check on this day. Stability & Change Management went from 30 to 33. That category is still filling its 30-day observation window: 9 days of observed history at the previous scan, 10 at this one. The score rises as the window fills, whether or not the server changes.
- 12 Sept 26 +4
- Stability: unverified → 0.27 ▲ functional
- 4 Sept 26 68
First indexed and scored.
Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.
Captured 20 Sept 2026 · Analysed npm/crixin@0.7.2
Provenance No attestation
The registry publishes no build provenance for this version, so there is nothing to verify.
| Result | No attestation |
|---|---|
| Ecosystem | npm |
Background: How many MCP packages publish verified provenance →
Dependencies 109 packages
| Packages resolved | 109 |
|---|---|
| Stale | 36 |
| Tree resolution | Complete |
Background: SBOMs and build attestations, explained →
The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability. A tool's description is untrusted text the model reads on every call, which is what makes this list a security surface and not just an inventory: how tool poisoning works →
get_call Get call status ~33
Look up a single call by SID. Returns status, duration, price, timestamps.
| Name | Type | Req | Description |
|---|---|---|---|
| call_sid | string | yes | – |
No output schema declared.
No examples provided.
list_calls List recent calls ~76
List recent calls. Filter by `to`, `from`, `status`, or `start_time_after` (ISO timestamp).
| Name | Type | Req | Description |
|---|---|---|---|
| from | string | – | – |
| page_size | integer | – | – |
| start_time_after | string | – | ISO 8601 timestamp. |
| status | string | – | – |
| to | string | – | – |
No output schema declared.
No examples provided.
list_recordings List call recordings ~39
List recordings attached to a call. Returns SIDs, durations, and direct media URLs (auth-protected).
| Name | Type | Req | Description |
|---|---|---|---|
| call_sid | string | yes | – |
No output schema declared.
No examples provided.
make_call Place a phone call ~486
Place an outbound voice call through Twilio. Pass a `to` number (E.164 like +201234567890) and either a `prompt` (the assistant will speak it; recipient response is recorded by default) or raw `twiml` for full control. Returns the Call SID and initial status.
| Name | Type | Req | Description |
|---|---|---|---|
| closing_message | string | – | Optional final line spoken before hangup. |
| consented | boolean | – | Attest that the recipient has given prior express consent (and, where required by law, prior express WRITTEN consent) to receive this AI voice call. Required for destinations in strict-consent jurisd… |
| language | string | – | Locale tag matching the voice, e.g. 'en-US', 'ar-EG'. |
| machine_detection | string | – | Whether Twilio should detect voicemail. 'DetectMessageEnd' waits for the beep before TwiML runs. |
| max_recording_seconds | integer | – | – |
| prompt | string | – | What the assistant should say when the recipient picks up. If `record` is not false, a recording prompt is appended. |
| record | boolean | – | Whether to record the recipient's reply after the prompt. Ignored when `twiml` or `url` is supplied. |
| status_callback | string | – | Optional public URL Twilio POSTs to as the call progresses (initiated → ringing → answered → completed). |
| to | string | yes | E.164 destination number, e.g. +201234567890 |
| twiml | string | – | Inline TwiML XML to use instead of the prompt/record flow. If set, `prompt` is ignored. |
| url | string | – | Public URL Twilio fetches for TwiML. Use this only if you need stateful flows. Leave empty to inline TwiML. |
| voice | string | – | Twilio TTS voice. e.g. 'Polly.Joanna-Neural' (en-US), 'Polly.Hala-Neural' (ar-EG), 'Polly.Zeina' (ar-MSA), 'Google.en-US-Wavenet-D'. Default Polly.Joanna-Neural. |
No output schema declared.
No examples provided.
send_sms Send an SMS ~92
Send an SMS or MMS via Twilio. Pass `media_url` for MMS. Use `messaging_service_sid` for sticky-sender behavior.
| Name | Type | Req | Description |
|---|---|---|---|
| body | string | yes | Message text. SMS auto-segments past 160 chars. |
| media_url | string | – | – |
| messaging_service_sid | string | – | – |
| status_callback | string | – | – |
| to | string | yes | E.164 destination |
No output schema declared.
No examples provided.
transcribe_call Transcribe a recording ~113
Transcribe a Twilio recording via Deepgram. Supports Arabic (ar), English (en), Spanish (es), and 30+ other languages. Requires DEEPGRAM_API_KEY in env.
| Name | Type | Req | Description |
|---|---|---|---|
| diarize | boolean | – | Detect distinct speakers. |
| language | string | – | ISO 639-1 code, e.g. 'ar', 'en'. Pass 'auto' to detect. |
| model | string | – | Deepgram model name. Default 'nova-2'. |
| recording_sid | string | yes | – |
No output schema declared.
No examples provided.
What is the Crixin Voice MCP server?
Crixin Voice is an MCP server listed in the public MCP registry as com.crixin/voice. Give your AI a real phone: place calls, send SMS, fetch recordings and transcripts. Local or hosted. This page covers its npm package (crixin).
Is the Crixin Voice MCP server safe to use?
Crixin Voice scores 75 out of 100 on VerifyMCP. We found no known CVEs affecting it as of 20 September 2026. It declares no install or post-install scripts. That is a record of what we were able to check automatically, not an endorsement. The category breakdown on this page shows every signal behind the number, including the ones we could not confirm.
What tools does the Crixin Voice MCP server expose?
Crixin Voice exposes 6 tools: make_call, get_call, list_calls, list_recordings, transcribe_call, send_sms. Their descriptions and schemas cost roughly 839 tokens of context every time the server is loaded.
Is the Crixin Voice MCP server still maintained?
Crixin Voice is still listed as active in the MCP registry. We last reached this channel on 20 September 2026. Those dates come from our own scans of the registry and the channel itself, not from anything the publisher announced.
What licence is the Crixin Voice MCP server under?
Crixin Voice declares the MIT licence, which is OSI-approved. That covers the source only, and says nothing about the cost of any service it calls.