EveryDev.ai
Subscribe
Home
Tools

3,864+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2782
  • Coding1973
  • Infrastructure825
  • Projects603
  • Marketing598
  • Research520
  • Analytics468
  • Design462
  • MCP419
  • Testing346
  • Security323
  • Data305
  • Integration224
  • Prompts220
  • Communication210
  • Extensions196
  • Learning179
  • Voice175
  • Commerce160
  • DevOps135
  • Web95
  • Finance31
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
    1. Home
    2. Tools
    3. Lanes Link
    Lanes Link icon

    Lanes Link

    MCP Servers
    Featured

    A private, self-hostable MCP server that connects your accounts, memory, and skills to every AI agent you use, behind Access Profiles you manage.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Lanes Link is free and open source under Apache-2.0. Self-host on your own machine or cloud.

    Engagement

    Available On

    Windows
    macOS
    Linux
    Web
    API

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    MCP ServersAccess ControlAgent Memory

    Alternatives

    BezalelscrittyStash Memory
    Developer
    LanesEst. 2026

    Listed Sep 2026

    About Lanes Link

    Lanes Link is an open-source, self-hostable MCP (Model Context Protocol) server built by Lanes that gives every AI agent you use a single, governed endpoint to your accounts, memory, tasks, files, and secrets. Licensed under Apache-2.0, it runs on your machine, in your own cloud, or on Lanes Managed Cloud using the same codebase. The project reached v0.16.0 in September 2026 and is actively developed in the open at github.com/lanes-sh/link.

    What It Is

    Lanes Link sits between your AI agents (Claude, ChatGPT, Codex, and anything else that speaks MCP) and the accounts and context those agents need. Instead of wiring each agent directly to each service — creating a tangle of per-agent integrations and re-authorisations — you connect your accounts once to Lanes Link and expose them through Access Profiles that define exactly what each agent or team member may reach. The endpoint enforces permissions at dispatch time rather than relying on the model to behave, so a rule like gmail.search = allow with gmail.send = deny holds regardless of what the agent was instructed.

    How Access Profiles Work

    Access Profiles are the core governance primitive. Each profile declares which connections, memory stores, skills, and vault entries it may use, and which members (human or agent identities) may invoke it. Key design decisions documented in the project:

    • Deny by default, enforced at dispatch — nothing is reachable until explicitly allowed.
    • Credentials never reach the agent — the agent gets results, not tokens.
    • Append-only audit log — every call, allowed or refused, is recorded.
    • Work and personal never mix — separate profiles, separate credential stores; an account not granted to a profile is not listed at all, so an agent never learns it exists.

    What You Keep in It

    The project distinguishes between what an agent gets and what belongs to the user. Eight categories of user-owned material live in the endpoint:

    • Connections — external accounts (mail, calendar, files, issues) via lanes link connect
    • Memory — facts to remember between sessions, stored as plain Markdown
    • Tasks — to-do items with statuses, shared across agents
    • Assets — named files, readable by both a text editor and an agent
    • Skills — user-written procedures handed to agents as instructions
    • Identity — who you are, so an agent signs off as you
    • Entities — people and companies for lookup, not recall
    • Vault — passwords and API keys released only where allowed

    The project supports over 100 providers including Gmail, Google Calendar, Google Drive, Slack, GitHub, Linear, Notion, Atlassian, Stripe, Sentry, HubSpot, Vercel, Supabase, and many more.

    Context Efficiency: The "Crunched" Surface

    The README notes a concrete tradeoff: connecting many accounts produces hundreds of MCP tools, and describing all of them to an agent before it reads a single user message consumes context. The project measured one two-profile endpoint at 278 tools and roughly 180,000 tokens. A surface: crunched mode in profile.yaml replaces the full tool list with a search tool and a call tool; the agent asks for what it needs and receives only the matching capabilities. The README states this drops the same endpoint to 28 tools and about 8,000 tokens with no change to permissions or reachability.

    Deployment Model

    Lanes Link runs in three configurations using the same open-source code:

    • Local — lanes link start on your machine, requires Bun 1.3.11+
    • Self-hosted — lanes link deploy to your own GCP project on Cloud Run
    • Lanes Managed Cloud — managed hosting (listed as coming soon as of the latest sources)

    The self-hosted path is the recommended option when the endpoint needs to be reachable from mobile clients or cloud-based AI services like claude.ai or ChatGPT. Requests go from the user's machine directly to the provider; Lanes servers are not in the data path for account content.

    Update: v0.16.0 and Desktop Integration

    The latest GitHub release is v0.16.0, published 11 September 2026. Recent blog posts from the Lanes team document active weekly shipping: v0.49 of the broader Lanes platform added Astra model support and improved Codex integration (8 September 2026), v0.48 added dictation and a lighter app (5 September 2026), and a 27 August 2026 post announced that Lanes Link is now available inside the Lanes Desktop app with no terminal required. The project is written in TypeScript and the default branch is develop.

    Lanes Link - 1

    Community Discussions

    Be the first to start a conversation about Lanes Link

    Share your experience with Lanes Link, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Lanes Link is free and open source under Apache-2.0. Self-host on your own machine or cloud.

    • Self-hostable MCP server
    • Over 100 account provider connections
    • Access Profiles with deny-by-default permissions
    • Memory, tasks, assets, skills, identity, entities, vault
    • Append-only audit log

    Capabilities

    Key Features

    • Self-hostable MCP server
    • Access Profiles with deny-by-default permissions
    • Connect once, use with any MCP-compatible agent
    • Over 100 account providers supported
    • Persistent memory between agent sessions
    • Task tracking shared across agents
    • Named file assets
    • Skills (user-written procedures for agents)
    • Identity signing
    • Entity lookup (people and companies)
    • Vault for secrets and API keys
    • Append-only audit log of all calls
    • Crunched surface mode to reduce context token usage
    • Local, self-hosted, and managed cloud deployment
    • Plain Markdown storage for memory and skills
    • Private GitHub repository sync for knowledge
    • OAuth and token-based provider connections
    • Per-profile credential isolation
    • Static token minting for headless runners

    Integrations

    Claude
    Claude Code
    ChatGPT
    OpenAI Codex
    Gmail
    Google Calendar
    Google Drive
    Google Docs
    Google Sheets
    Google Tasks
    Google Contacts
    iCloud Mail
    iCloud Calendar
    iCloud Contacts
    iCloud Drive
    Outlook Mail
    Outlook Calendar
    OneDrive
    Microsoft To Do
    Fastmail
    Zoho Mail
    Yahoo Mail
    Nextcloud
    Notion
    Linear
    Slack
    GitHub
    Asana
    Atlassian (Jira, Confluence)
    Todoist
    ClickUp
    monday.com
    Shortcut
    Miro
    Figma
    Canva
    Calendly
    HubSpot
    Stripe
    PayPal
    Square
    Mercury
    Ramp
    bunq
    Paddle
    Sentry
    Vercel
    Netlify
    Cloudflare
    Supabase
    Neon
    Heroku
    CircleCI
    Datadog
    Grafana
    PostHog
    Mixpanel
    Amplitude
    Contentful
    Storyblok
    Sanity
    Webflow
    Wix
    Algolia
    Reddit
    Discord
    Dropbox
    Box
    Airtable
    Zapier
    Attio
    Klaviyo
    Vimeo
    Mux
    Replicate
    Apify
    Tavily
    Bright Data
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

    Be the first to rate Lanes Link and help others make informed decisions.

    Developer

    Lanes

    Lanes builds tools for running autonomous AI agents at scale, combining a macOS desktop app for parallel agentic coding with an open-source MCP access layer called Lanes Link. The team ships weekly, develops in the open under Apache-2.0, and takes a local-first, self-hostable approach so user code, prompts, and credentials stay on the user's own machine. Lanes also offers Lanes Compute for GPU-backed workloads when local resources are insufficient.

    Founded 2026
    Read more about Lanes
    WebsiteGitHub
    1 tool in directory

    Similar Tools

    Bezalel icon

    Bezalel

    A capability plane for personal agents that provides memory, email, money, texting, a computer, sandboxes, and hundreds of connectors behind a single MCP URL.

    scritty icon

    scritty

    A terminal emulator that captures every AI CLI agent's conversations into one shared, searchable, local-first memory corpus served over MCP and CLI.

    Stash Memory icon

    Stash Memory

    Persistent memory layer for AI agents that stores episodes, facts, and working context in Postgres with an MCP server included. Self-hosted, open source, works with any MCP-compatible agent.

    Browse all tools

    Related Topics

    MCP Servers

    Model Context Protocol servers that extend AI capabilities.

    235 tools

    Access Control

    AI-enhanced tools for managing authentication and authorization.

    35 tools

    Agent Memory

    Memory layers, frameworks, and services that enable AI agents to store, recall, and manage information across sessions. These tools provide persistent, semantic, and contextual memory for agents, supporting personalization, long-term context retention, graph-based relationships, and hybrid RAG + memory workflows.

    143 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions