Menu
ESC

Nhập từ khóa để tìm kiếm

↑↓ Di chuyển
Enter Mở
ESC Đóng

Đang tải...

Automation

Claude MCP

bởi Anthropic

Model Context Protocol — chuẩn mở để Claude (và LLM khác) kết nối tool, data, service.

Open spec free + server tùy provider Trang chủ

Tool này là gì?

Model Context Protocol (MCP) là một open standard do Anthropic propose cuối 2024, đã được OpenAI và Google adopt 2025. MCP định nghĩa cách LLM (Claude, GPT, Gemini) kết nối với external tool và data source — giống "USB-C cho AI".

Trước MCP, mỗi tool tích hợp với LLM phải code riêng cho từng platform (function calling format khác nhau). Với MCP, viết 1 MCP server (vd kết nối với Notion, Slack, PostgreSQL) — mọi LLM client (Claude Desktop, Cursor, Claude Code, OpenAI ChatGPT) đều dùng được.

Cho PM: MCP là cách build "AI workflow custom" không cần code agent từ đầu. Bạn config 1 MCP server cho data nội bộ, Claude tự query khi cần — biến Claude thành "AI co-worker" có context business riêng.

Khi nào nên dùng

Khi nào KHÔNG nên dùng

Workflow tiêu biểu

flowchart LR
    A[Claude Desktop
hoặc Claude Code] --> B[MCP Client] B --> C[MCP Server A
Notion] B --> D[MCP Server B
PostgreSQL] B --> E[MCP Server C
Slack] C --> F[Notion API] D --> G[Database] E --> H[Slack API]

Mô hình: Claude là "brain", MCP server là "tay" — mỗi server expose 1 set tool (vd notion server: search, create page, update DB). Claude tự chọn tool nào dùng dựa trên prompt.

Prompt mẫu

(Trong Claude Desktop với MCP Notion + Linear cài đặt)

Hôm nay tôi cần review status sprint. Hãy:
1. Query Linear: list mọi issue trong sprint hiện tại,
   group theo trạng thái (todo/in_progress/done)
2. Tìm issue blocker (label 'blocker' hoặc 'urgent')
3. Cho mỗi blocker, search Notion xem có doc spec không
4. Tạo summary post vào channel Slack #standup,
   format: tổng số issue + danh sách blocker + link Notion
(Trong Claude Code, MCP PostgreSQL server enabled)

Phân tích retention user 30 ngày qua:

1. Query bảng users: signup count theo tuần
2. Query bảng events: active user count by signup cohort
3. Compute Day-7, Day-30 retention rate
4. Plot kết quả ra ASCII chart trong terminal
5. Recommend 3 hypothesis tại sao retention giảm
   (nếu có giảm)

Mẹo nâng cao

Tip 1 — MCP server market: Hàng trăm MCP server có sẵn — GitHub, Notion, Slack, Postgres, Filesystem, Browser, Figma. Check awesome-mcp-servers repo trên GitHub để xem catalog.
Tip 2 — Custom MCP server: Viết MCP server riêng cho domain công ty (vd "PRD database"). SDK Python/TS có sẵn — 1 senior dev build trong 1 ngày. ROI cực cao khi team dùng AI nhiều.
Cẩn thận: MCP server có quyền execute action thật (delete row DB, gửi email). Audit cẩn thận trước khi cài server từ source không-đáng-tin. Limit permission tối thiểu.

Kết hợp với công cụ khác

flowchart LR
    A[Claude Code / Desktop] --> B[MCP Server
cho mỗi tool] B --> C[Notion / Linear / DB] A --> D[Skill / agent workflow] D --> B

MCP là layer infrastructure — không phải tool end-user. Nó power-up các tool khác (Claude Code, Cursor) bằng cách thêm tool extension.

So với alternatives

So vớiMạnh hơn ởYếu hơn ở
OpenAI Function CallingCross-vendor (Claude, GPT, Gemini đều support), open specFunction calling đã mature, tooling rộng hơn
Zapier / Make.comAI judgment trong workflow, không cần config từng nodeLow-code GUI, không cần dev maintain
LangChain / LangGraphStandardized, ít lock-in framework, dev experience đơn giản hơnLangChain agent framework đầy đủ hơn cho workflow phức tạp

Tài nguyên thêm

Công cụ cùng nhóm