Skip to main content
Glama

@uselink/mcp

Model Context Protocol (MCP) server for uselink. Lets Claude, Cursor, Codex, and other MCP-aware AI tools publish HTML/Markdown docs, upload assets, and reply to stakeholder comments directly from the editor — no manual copy-paste, no portal switch.

Status: 0.2.0 — adds project + folder management and document moves.


Two ways to connect

Uselink supports two parallel authentication paths. Pick one — they don't overlap.

Option A — stdio + Personal Access Token (this package)

Best for CI/CD pipelines, scripted workflows, and power users who want fine-grained, revocable tokens.

claude mcp add uselink npx -y @uselink/mcp

Then set USELINK_API_KEY=ulk_pat_xxx in the Claude Code MCP environment. Full tool catalog (documents, projects, folders, webhooks orchestration) — everything below.

Option B — HTTP + OAuth (browser login, no token paste)

Best for non-technical users (PM, designers) and tools that mandate OAuth (Claude.ai Connectors, Cursor extension store).

claude mcp add --transport http uselink <USELINK_BACKEND_URL>/mcp

Browser opens, you log in to uselink, click "Allow" on the consent screen, done. Token rotation and revocation are automatic. Manage authorized clients at uselink → Settings → Connected Apps.

Tool coverage on HTTP transport is currently the document + asset + comment surface (14 tools). Project and folder tools remain stdio-only until they are wired into the HTTP server.

Both paths talk to the same backend; revoking via Settings → Connected Apps does not affect PATs, and rotating a PAT does not affect OAuth-issued tokens.


Related MCP server: mcp-lindoai

Install (Option A)

npm install -g @uselink/mcp

Or run on demand without a global install:

npx -y @uselink/mcp

Environment (Option A)

Variable

Required

Default

Notes

USELINK_API_KEY

Yes

Personal access token from uselink → Settings → Developer. Format: ulk_pat_xxx.

USELINK_API_BASE

No

uselink production backend

Override for self-hosted or staging environments.


Tools

Read tools

Tool

Description

uselink_list_documents

List documents in a workspace

uselink_read_document

Read full document content by ID

uselink_search_documents

Full-text search across a workspace

uselink_list_comments

List threaded comments on a document

uselink_list_assets

List assets attached to a document

Write tools

Tool

Description

uselink_create_document

Create a new document. Pass project_id and/or folder_id to drop it in a specific location

uselink_update_document

Update title, content, or format (slug is immutable)

uselink_move_document

Move a document into a different project / folder

uselink_publish_document

Publish a document (makes it publicly accessible)

uselink_unpublish_document

Unpublish a document

uselink_delete_document

Delete a document

uselink_upload_asset

Upload an image or file from local disk

uselink_upload_zip

Upload a zip archive; server extracts and stores each file

uselink_reply_comment

Reply to an existing comment thread

uselink_resolve_comment

Mark a comment thread as resolved

Project tools

Require projects:read (list/read/check-slug) or projects:write (everything else) on the PAT. Stdio + PAT only — not yet on HTTP transport.

Tool

Description

uselink_list_projects

List projects the PAT can see

uselink_read_project

Read a project by id

uselink_create_project

Create a project (workspace inferred from PAT)

uselink_update_project

Update name / slug

uselink_archive_project

Soft-archive a project

uselink_unarchive_project

Restore an archived project

uselink_rename_project_slug

Rename a project's slug

uselink_check_project_slug

Check whether a slug is available

uselink_set_default_project

Mark a project as the user's default

uselink_move_project_to_workspace

Move a personal project into a workspace

uselink_remove_project_from_workspace

Move a project back to personal

Folder tools

Require folders:read (list/read) or folders:write (everything else) on the PAT. Stdio + PAT only — not yet on HTTP transport.

Tool

Description

uselink_list_folders

List folders in a project (or under a parent folder)

uselink_read_folder

Read a folder by id

uselink_create_folder

Create a folder inside a project

uselink_update_folder

Update name / slug / color

uselink_move_folder

Re-parent a folder

uselink_delete_folder

Delete a folder (docs inside are moved to the project root)

Account tools

Require account:write on the PAT.

Tool

Description

uselink_set_url_handle

Set the user's public URL handle (3-30 lowercase letters/digits/hyphens, no leading/trailing hyphen). Required once before publishing the first document. Call this when publish returns USERNAME_REQUIRED.

Orchestrator

Tool

Description

uselink_publish_with_assets

Upload local images, rewrite <img src> to CDN URLs, create document, and publish — in one call


OAuth scopes (Option B only)

When you connect via HTTP transport, the consent screen lists these scopes:

Scope

Grants

docs:read

List, read, and search your documents

docs:write

Create, update, publish, unpublish, and delete documents

assets:write

Upload images and files to your documents

comments:read

Read comments on your documents

comments:moderate

Reply to and resolve comments on your documents

account:write

Set your public URL handle (required to publish your first doc)

Authorized clients can be listed and revoked individually at uselink → Settings → Connected Apps.


Development

npm install
npm run build      # compile to dist/
npm run dev        # run via tsx
npm run smoke      # local smoke test (lists tools)

Publishing

This package publishes from CI on tags matching mcp-v*.*.* via .github/workflows/publish-mcp.yml.

Prerequisite (one-time, manual): the @uselink npm organization must be reserved on npmjs.com and the NPM_TOKEN secret added to the GitHub repo before the first publish.

License

MIT

Available Tools

34 tools

TDQS

B3.4/5.0
Disambiguation3/5

Most tools are distinct, but uselink_search_documents is a thin wrapper over uselink_list_documents, and uselink_rename_project_slug duplicates slug updating via uselink_update_project. uselink_publish_with_assets also overlaps with the create+upload+publish workflow, creating mild selection ambiguity.

Naming Consistency5/5

Every tool follows a consistent uselink_<verb>_<noun> pattern in lowercase snake_case. Verbs clearly indicate actions (list, create, update, publish, delete) and resources are consistent across documents, projects, folders, comments, and assets. There is no stylistic mixing.

Tool Count2/5

At 34 tools, the surface is heavy. While the domain spans multiple resources, the count is inflated by redundant conveniences (search vs list, rename vs update, publish_with_assets) and exceeds the recommended range for a coherent toolset.

Completeness3/5

Core document (CRUD + publish/unpublish), project, and folder management are well covered. However, comments lack a create tool—only list, reply, and resolve—so new threads cannot be started. Also missing are comment deletion or unresolve and asset deletion, which are notable gaps for a collaboration platform.

Maintenance

ActivityInactive
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    B
    maintenance
    MCP server for MDMA (Markdown Document with Mounted Applications) — interactive Markdown with forms, approval gates, tables, and more. Exposes the MDMA spec, authoring prompts, package metadata, and live docs to AI assistants so agents can author and integrate MDMA correctly.
    7
    153
    66
    MIT
  • A
    license
    B
    quality
    B
    maintenance
    MCP (Model Context Protocol) server for Lindo AI — create websites, pages, and blog posts with AI directly from Claude, Cursor, Kiro, Windsurf, and other MCP-compatible tools.
    50
    68
    3
    MIT
  • F
    license
    Not graded
    quality
    B
    maintenance
    A centralized MCP server for internal technical documentation that integrates with IDEs like Claude Code and VS Code, enabling semantic search and management of Markdown documents via natural language.

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/c0x12c/uselink-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server