General Tools
serdaroztetik.com
Enables AI to interact with a human's phone through calls, texts, and session management.
ENDPOINT 1
https://serdaroztetik.com/aiphone/mcp
MCP server metadata
- Name
- call-me
Call Me rings a real human's iPhone and returns what they said. - The human installs the Call Me iOS app (https://apps.apple.com/app/id6789575165) and reads their 10-digit Call Me number from it. Ask for the number once and remember it; it is not a real phone number. - `call` rings the phone and waits ~30 seconds. status "completed" carries the spoken answer as text. status "ringing" means nobody picked up yet: pass the returned call_id to `poll_result` (each poll waits up to ~25s; an unanswered ring resolves as "missed" within about a minute, so one or two polls settle it). - Every result carries a session_token. Reuse it in later `call`/`text` calls so they land in the same conversation thread on the phone, and pass it to `wait_for_reply` to receive what the human sends back (texts, voicemail transcripts) after a missed call or a text. - `text` sends a one-way message — use it for notifications that need no answer, or as the fallback when a call comes back "missed" or "declined". - Do not retry an unanswered call in a loop; one call plus one text is the polite ceiling.
Known tools 5
wait_for_replyWait for the human to send something back to this session — texts and voicemail transcripts arrive here.
Potential side effectsCONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.call-me]
url = "https://serdaroztetik.com/aiphone/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"call-me": {
"type": "http",
"url": "https://serdaroztetik.com/aiphone/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: call-me
Remote MCP URL: https://serdaroztetik.com/aiphone/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"call-me": {
"url": "https://serdaroztetik.com/aiphone/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"call-me": {
"type": "http",
"url": "https://serdaroztetik.com/aiphone/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "call-me",
"transport": "streamable-http",
"url": "https://serdaroztetik.com/aiphone/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
TRUST AND VERIFICATION EVIDENCE
Loading Trust v2 evidence…
Checking the associated registrable domain. The BuiltWith key remains server-side.
Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.