MCP Hub
Back to servers

telitask-mcp

TeliTask MCP server — manage contacts, tasks, and calls from AI assistants

Registry
Updated
Apr 9, 2026

Quick Install

npx -y @telitask/mcp-server

TeliTask

AI-powered phone calls, task management, and contact organization

npm version

Website · npm · Report Bug · Discussions


Features

  • AI Voice Calls — Make and receive phone calls with AI-generated transcripts and summaries
  • Contact Management — Organize and manage your contacts
  • Task Tracking — Create, assign, and track tasks
  • MCP Server — Integrate with Claude Desktop, Claude Code, Cursor, and more

MCP Server

The @telitask/mcp-server package lets you manage contacts, tasks, and calls directly from your AI assistant.

Prerequisites

Step 1: Authenticate

npx @telitask/mcp-server login

This opens your browser to sign in and authorize the MCP server.

Step 2: Connect Your Client

Claude Desktop

Add to your claude_desktop_config.json:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "telitask": {
      "command": "npx",
      "args": ["-y", "@telitask/mcp-server"]
    }
  }
}

Restart Claude Desktop after saving.

Claude Code
claude mcp add telitask -- npx -y @telitask/mcp-server
Cursor

Add to .cursor/mcp.json in your project or globally:

{
  "mcpServers": {
    "telitask": {
      "command": "npx",
      "args": ["-y", "@telitask/mcp-server"]
    }
  }
}
VS Code (Copilot)
  1. Open the Command Palette (Ctrl+Shift+P / Cmd+Shift+P)
  2. Run MCP: Add Server
  3. Select Command (stdio)
  4. Enter command: npx -y @telitask/mcp-server
  5. Name it telitask

Or add manually to .vscode/settings.json:

{
  "mcp": {
    "servers": {
      "telitask": {
        "command": "npx",
        "args": ["-y", "@telitask/mcp-server"]
      }
    }
  }
}
Windsurf

Add to your mcp_config.json:

{
  "mcpServers": {
    "telitask": {
      "command": "npx",
      "args": ["-y", "@telitask/mcp-server"]
    }
  }
}

Note: Don't see your client? Most MCP-compatible tools use the same config format. Check your client's MCP documentation and use the config above.

Available Tools

ToolDescription
call_meRequest a call to your phone
make_callMake a call to a contact
schedule_callSchedule a call for later
cancel_callCancel a scheduled call
list_callsList call history
get_callGet call details with transcript
list_contactsList your contacts
create_contactCreate a new contact
list_tasksList your tasks
create_taskCreate a new task
update_taskUpdate an existing task
send_phone_codeSend a verification code to a phone number
verify_phone_codeVerify a phone number with a 6-digit code

Changelog

See CHANGELOG.md for release history.

License

© 2026 Telitask. All rights reserved.

Reviews

No reviews yet

Sign in to write a review