Skip to main content

MCP Server for Laterless — access your bookmarks knowledge base from AI tools

Project description

Laterless MCP Server

Access your Laterless bookmarks knowledge base from AI tools.

Features

Tool Description
search_bookmarks Semantic search — find bookmarks by meaning
list_bookmarks Browse recent bookmarks
get_bookmark Read full bookmark content
add_bookmark Save a URL as a bookmark
add_brain_dump Record a thought or idea
get_profile View your profile and stats

Setup

1. Get an API Key

Go to your Laterless profile → API Keys → Generate a new key.

2. Install

# Recommended: run directly with uvx (no install needed)
uvx mcp-server-laterless

# Or install with pip
pip install mcp-server-laterless

3. Configure Your AI Tool

OpenClaw

Add to ~/.config/openclaw/openclaw.json:

{
  "mcpServers": {
    "laterless": {
      "command": "uvx",
      "args": ["mcp-server-laterless"],
      "env": {
        "LATERLESS_API_KEY": "ltls_your_key_here"
      }
    }
  }
}

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "laterless": {
      "command": "uvx",
      "args": ["mcp-server-laterless"],
      "env": {
        "LATERLESS_API_KEY": "ltls_your_key_here"
      }
    }
  }
}

Claude Code

claude mcp add laterless \
  -e LATERLESS_API_KEY=ltls_your_key_here \
  -- uvx mcp-server-laterless

Cursor

Add to .cursor/mcp.json in your project, or configure via Settings → MCP → Add new MCP Server:

{
  "mcpServers": {
    "laterless": {
      "command": "uvx",
      "args": ["mcp-server-laterless"],
      "env": {
        "LATERLESS_API_KEY": "ltls_your_key_here"
      }
    }
  }
}

AntiGravity

Add to mcp_servers.json in your project root:

{
  "servers": [
    {
      "name": "laterless",
      "transport": "stdio",
      "command": "uvx",
      "args": ["mcp-server-laterless"],
      "enabled": true,
      "env": {
        "LATERLESS_API_KEY": "${LATERLESS_API_KEY}"
      }
    }
  ]
}

Then add to your .env:

LATERLESS_API_KEY=ltls_your_key_here

Codex

Add to ~/.codex/config.toml:

[mcp_servers.laterless]
command = "uvx"
args = ["mcp-server-laterless"]
env = { LATERLESS_API_KEY = "ltls_your_key_here" }

Gemini CLI

Add to ~/.gemini/settings.json:

{
  "mcpServers": {
    "laterless": {
      "command": "uvx",
      "args": ["mcp-server-laterless"],
      "env": {
        "LATERLESS_API_KEY": "ltls_your_key_here"
      }
    }
  }
}

Windsurf

Add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "laterless": {
      "command": "uvx",
      "args": ["mcp-server-laterless"],
      "env": {
        "LATERLESS_API_KEY": "ltls_your_key_here"
      }
    }
  }
}

VS Code (GitHub Copilot)

Add to .vscode/mcp.json in your project:

{
  "servers": {
    "laterless": {
      "command": "uvx",
      "args": ["mcp-server-laterless"],
      "env": {
        "LATERLESS_API_KEY": "ltls_your_key_here"
      }
    }
  }
}

Zed

Add to Zed settings JSON:

{
  "context_servers": {
    "laterless": {
      "command": {
        "path": "uvx",
        "args": ["mcp-server-laterless"],
        "env": {
          "LATERLESS_API_KEY": "ltls_your_key_here"
        }
      }
    }
  }
}

Others

For any MCP-compatible client not listed above, use these settings:

Setting Value
Command uvx
Arguments mcp-server-laterless
Transport stdio
Environment LATERLESS_API_KEY=ltls_your_key_here

Environment Variables

Variable Required Default Description
LATERLESS_API_KEY Yes Your API key (ltls_...)
LATERLESS_API_URL No https://gate.laterless.com API base URL (for development)

Development

# Install dependencies
uv sync

# Run locally
LATERLESS_API_KEY=ltls_xxx uv run mcp-server-laterless

# Test with MCP Inspector
npx @modelcontextprotocol/inspector uv run mcp-server-laterless

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mcp_server_laterless-0.1.2.tar.gz (49.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mcp_server_laterless-0.1.2-py3-none-any.whl (8.2 kB view details)

Uploaded Python 3

File details

Details for the file mcp_server_laterless-0.1.2.tar.gz.

File metadata

  • Download URL: mcp_server_laterless-0.1.2.tar.gz
  • Upload date:
  • Size: 49.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.8 {"installer":{"name":"uv","version":"0.10.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for mcp_server_laterless-0.1.2.tar.gz
Algorithm Hash digest
SHA256 dc653402751e85755dd75c9a979c332c748432a6d83d111ebbd5b54a3cef0464
MD5 b424b0f89ce453e058909118fb50d966
BLAKE2b-256 bd93741284f72e7cd0b630482c9c73d326a1c191aa3827cea1d2dbe610a7b748

See more details on using hashes here.

File details

Details for the file mcp_server_laterless-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: mcp_server_laterless-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 8.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.8 {"installer":{"name":"uv","version":"0.10.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for mcp_server_laterless-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 c612c2a6c42e00af7f22ad516f0281136f5ed3ee144ce0ac75eddc18706df9e7
MD5 34c8819071ef9fa67f4363d88666527a
BLAKE2b-256 df898030cba343bd010f9bfeaee6fd2d38dc4a22ee6bdf4454bf696e8176f0c7

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page