🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@meetlark/mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@meetlark/mcp-server

MCP server for MeetLark - agent-first meeting schedule poll - for humans and agents.

latest
npmnpm
Version
1.0.3
Version published
Weekly downloads
78
81.4%
Maintainers
1
Weekly downloads
 
Created
Source

@meetlark/mcp-server

MCP server for MeetLark - agent-first meeting schedule poll - for humans and agents.

Create polls, collect availability votes, and find times that work for groups. No accounts needed.

Quick Start

npx @meetlark/mcp-server

Configuration

Claude Desktop

Add to your Claude Desktop config (claude_desktop_config.json):

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

On Windows, use cmd /c wrapper if the above fails:

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

Cursor

Add to your Cursor MCP settings (.cursor/mcp.json):

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

Tools

ToolDescription
meetlark_create_pollCreate a scheduling poll to find a time that works for a group
meetlark_get_resultsView current poll results including all votes cast so far
meetlark_voteCast a vote on a scheduling poll (yes/maybe/no per time slot)
meetlark_get_admin_viewGet full poll details and results using the admin token
meetlark_close_pollClose a poll to stop accepting new votes
meetlark_reopen_pollReopen a previously closed poll to accept votes again

Environment Variables

VariableDefaultDescription
MEETLARK_API_URLhttps://meetlark.aiBase URL for the MeetLark API

Remote Endpoint

A hosted MCP endpoint is available at:

https://meetlark.ai/mcp

This is a stateless Streamable HTTP endpoint -- no session persistence, no authentication required. Connect any MCP client directly.

Documentation

Full documentation at meetlark.ai/agents.

FAQs

Package last updated on 08 Feb 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts