1. Conduid
  2. Developer Tools
  3. Pokeos
MCP server · Developer Tools

Pokeos

let poke send text messages, use your browser, play music, write code & control your laptop

Unclaimed last commit 11 months ago devtools
48Fair

Scored 4 months ago · breakdown

About Pokeos

Pokeos is an MCP server published by rajansagarwal in the Developer Tools category: let poke send text messages, use your browser, play music, write code & control your laptop. It has been installed 0 times through Conduid.

The repository has 15 stars and 1 forks, with the last commit 11 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx pokeos

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Pokeos

Powered by Claude · Grounded in docs

I know everything about Pokeos. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

README

poke-desktop

Local MCP server providing Poke with 5 core capabilities for enhanced digital interaction through iMessage intelligence, web automation, development tools, system control, and music integration.

Core Capabilities

1. iMessage Intelligence

Proactive message analysis with vector search and LLM interpretation. Indexes messages into LanceDB with OpenAI embeddings for semantic search, context retrieval, and automated monitoring of unreplied conversations.

2. Web Agent Integration

Automated web interaction through Nova agents for form filling and meeting scheduling. Processes emails and executes actionable items using local browser automation instead of relying on web search alone.

3. Cursor IDE Integration

Direct code debugging and development assistance within your IDE. Launches background agents, manages repositories, and provides conversational interface for development tasks.

4. System Command Execution

Generalized command runner with intelligent AppleScript integration for macOS automation. Handles terminal commands, system settings, wellness automation, and file operations.

Setup

Prerequisites

Python 3.13+, uv package manager, Tailscale, and macOS Full Disk Access permissions.

Installation

# Install dependencies
uv sync

# Setup contacts cache for name resolution (optional)
python local_mcp/scripts/contacts_cache_dump.py

# Grant permissions first (see Permissions section below)

# Initial message indexing  
cd local_mcp
python messages.py --index --chats 20 --per 30 --dbdir ~/.chat_memdb

This creates:

  • Contacts cache at ~/.contacts_cache.txt
  • Message snapshots in ~/Library/Messages/_snapshots/
  • Vector database at ~/.chat_memdb

Running the MCP Server

# Start the local MCP server
uv run endpoint.py

# In another terminal, create secure public tunnel
tailscale funnel --https=443 --set-path=/mcp "localhost:8000/mcp"

The server will be available locally at http://localhost:8000/mcp and publicly via your Tailscale funnel URL.

Environment Variables

Create a .env file with:

OPENAI_API_KEY=your_openai_api_key
POKE_API_KEY=your_poke_api_key
WORKING_DIRECTORY=/path/to/your/projects

Permissions

Required for iMessage database access:

  1. Full Disk Access: System Settings > Security & Privacy > Privacy > Full Disk Access
    • Add Terminal.app, your IDE (VS Code, etc.), and Python executable
  2. Contacts Access: For name resolution instead of phone numbers/emails
    • Add same applications to Contacts privacy settings

iMessage Database Location: ~/Library/Messages/chat.db

  • Must be readable by your terminal/Python process
  • Without permissions, indexing will fail with access denied errors

MCP Tools Available

The server exposes the following tools to Poke via MCP:

Message Intelligence: retrieve_messages_text, suggest_message_context, get_relevant_context, revalidate_message_index

System & Web: web_agent, run_shell_command, play_spotify_liked_songs

Development: cursor_launch_agent, cursor_get_agent_status, list_directory_files, read_file_contents

Proactive: proactive_message_check for automated unreplied message scanning

Architecture

The system uses a local MCP server funneled through Tailscale SSL to provide secure remote access. This approach enables Poke to access local system capabilities while maintaining security through Tailscale's mesh networking.

Key components: LanceDB vector store, FastMCP server, Tailscale SSL tunnel, custom memory system, and cron-based proactive monitoring.

This setup was instrumental in helping Poke debug its own Spotify integration locally, demonstrating the meta-capabilities of the system.

Automation

# Reindex messages
cd local_mcp && python messages.py --index

# Proactive check (add to crontab)
python -c "from messages import proactive_message_check; proactive_message_check()"

README mirrored from the source repository 4 months ago. The original is authoritative.

Questions

About Pokeos

How do I install Pokeos?

Run npx pokeos, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Pokeos safe to use with an AI agent?

Its trust score is 48 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Pokeos still maintained?

The last commit was 11 months ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.