npm @linkedmash/mcpstreamable-httpMITupdated 1mo ago
LinkedMash imports your LinkedIn saved posts into a searchable library and auto-syncs them to Notion, Google Sheets, Airtable, and Miro, with a REST API and an MCP server so AI agents such as Claude, ChatGPT, Cursor, and Codex can search and manage the same library.
LinkedMash 能做什么?
LinkedMash
LinkedMash imports your LinkedIn saved posts into a searchable library and auto-syncs them to Notion, Google Sheets, Airtable, and Miro, with a REST API and an MCP server so AI agents such as Claude, ChatGPT, Cursor, and Codex can search and manage the same library.
This repository is the public home of the LinkedMash developer surface: the hosted MCP server, the @linkedmash/mcp npm package, the REST API, and the agent skill. The product itself lives at linkedmash.com. The service source code is not published in this repository.
Connect an AI agent over MCP
LinkedMash runs a hosted MCP server, so there is nothing to install. Add it to your MCP client config:
{
"mcpServers": {
"linkedmash": {
"url": "https://mcp.linkedmash.com/api/mcp?token=<your-token>"
}
}
}
Or send the token as a header instead of a URL parameter:
https://mcp.linkedmash.com/api/mcp
Authorization: Bearer <your-token>
Prefer the header form where your client supports it; the URL form exists for clients that cannot set headers, and query strings can end up in request logs.
Create a token at linkedmash.com/integrations/api (login required). Note: the server accepts the initial MCP handshake before checking your token, so a wrong token shows up as a failure on the first tool call, not at connect time.
Per-client setup for Claude Desktop, Claude Code, Cursor, VS Code, Windsurf, Codex, OpenClaw, and ChatGPT: Connect Your Agent.
Local MCP server (npm)
Prefer a local stdio server? The same tools ship as @linkedmash/mcp:
LINKEDMASH_TOKEN=<your-token> npx -y @linkedmash/mcp
REST API
The REST API lives at https://api.linkedmash.com/v1 with Bearer authentication (saved posts are called bookmarks in the API):
curl -H "Authorization: Bearer <your-token>" "https://api.linkedmash.com/v1/bookmarks"
Start here:
Agent-readable Markdown versions exist for most doc pages: append .md to an api-docs URL, or start from llms.txt.
Agent skill
Teach a coding agent to drive LinkedMash end to end:
npx skills add linkedmash/agent-skills
Skill repo: linkedmash/agent-skills · Docs: Skills
What LinkedMash does
- Imports the posts you save on LinkedIn, text and media included, via a Chrome extension
- Full-text and AI search, labels, and smart folders across your whole library
- Auto-sync to Notion, Google Sheets, Airtable, and Miro
- Download your saved posts as CSV, JSON, or PDF
- An AI assistant that answers questions across your saves
- A Composer to draft, schedule, auto-publish, and analyze LinkedIn posts
Links
- Website: linkedmash.com
- For AI agents: linkedmash.com/for-ai-agents
- API docs: linkedmash.com/api-docs/getting-started
- npm: @linkedmash/mcp
Support
Questions or problems with the MCP server or API? Open an issue or reach out via linkedmash.com.
安装
把 LinkedMash 添加到你的客户端。选择你正在使用的那个。
{
"servers": {
"mcp": {
"type": "http",
"url": "https://mcp.linkedmash.com/api/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
claude mcp add mcp -- npx -y @linkedmash/mcpcodex mcp add mcp -- npx -y @linkedmash/mcpamp mcp add mcp -- npx -y @linkedmash/mcp{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@linkedmash/mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@linkedmash/mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@linkedmash/mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@linkedmash/mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@linkedmash/mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@linkedmash/mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"@linkedmash/mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @linkedmash/mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
评分
39 / 100
不完整
- 文档22/25
- 维护16/25
- 可信度16/20
- 能力0/15
- 安装体验15/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 42 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 18 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
版本历史
| 版本 | 发布于 |
|---|---|
| 1.2.0最新 | 2026年8月13日 |
| 1.0.0 | 2026年7月9日 |