Bayangkan Claude bisa langsung baca database-mu, cek file di Google Drive, ambil data dari Notion, dan eksekusi API — semua dari satu chat window. Nggak perlu copy-paste konteks, nggak perlu nulis script integrasi. Itulah yang ditawarkan Claude MCP (Model Context Protocol).
MCP itu kayak USB-C untuk AI. Sebelum MCP, tiap mau connect Claude ke tool baru, kamu harus bikin custom integration. Sekarang, cukup plug MCP server, Claude langsung “ngerti” cara bicara sama tool itu.
Artikel ini bakal bahas apa itu MCP, cara setup, dan contoh workflow otomatisasi bisnis yang bisa kamu bikin hari ini.
Apa itu MCP (Model Context Protocol)?
MCP adalah protokol open-source yang dibikin Anthropic untuk standarisasi cara AI model berinteraksi dengan sumber data eksternal. Konsepnya sederhana:
- MCP Server = program kecil yang jembatan antara Claude dan tool/data source-mu
- MCP Client = Claude Desktop atau aplikasi yang pakai Claude API
- Protocol = format standar untuk pertukaran konteks, tool, dan prompt
Sebelum MCP, kalau kamu mau Claude baca database PostgreSQL, kamu harus: nulis script Python, konek DB, query data, format jadi teks, kirim ke Claude API, parse response. Sekarang: install MCP server PostgreSQL, Claude langsung bisa query sendiri.
Kalau kamu sudah pernah pakai Claude Projects untuk manajemen proyek, MCP itu kayak level berikutnya — bukan cuma kamu yang kasih konteks ke Claude, tapi Claude yang ambil konteks sendiri dari sumbernya.
Kenapa MCP Matter buat Bisnis Online?
Banyak bisnis online stuck di “AI bagus tapi repot integrasinya”. MCP pecah masalah itu:
- No-code integration — nyalakan MCP server, done. Nggak perlu developer.
- Konteks real-time — Claude baca data terbaru, bukan snapshot yang kamu paste manual.
- Multi-tool dalam satu chat — query database, baca file Notion, cek GitHub repo, semua sekaligus.
- Aman — MCP server jalan di lokal kamu, bukan di cloud Claude. Data sensitif nggak keluar.
Untuk kamu yang sudah pakai Claude Pro atau punya API key Claude, MCP ini unlock use case yang sebelumnya cuma bisa dilakukan developer senior.
Step 1: Install MCP via Claude Desktop
Cara termudah mulai pakai MCP adalah via Claude Desktop (app Claude Pro).
Setup Filesystem MCP Server
MCP server paling dasar: akses file lokal.
- Install Node.js (kalau belum)
- Buka Claude Desktop Settings → Developer → Edit Config
- Tambahkan konfigurasi:
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@anthropic/mcp-filesystem",
"/home/ubuntu/projects",
"/home/ubuntu/documents"
]
}
}
}
- Restart Claude Desktop
Sekarang Claude bisa baca file di folder yang kamu specify. Coba chat: “Baca semua file markdown di folder projects dan bikin summary”.
Claude akan langsung list file, baca isi, dan kasih summary. Nggak perlu upload atau paste.
Step 2: Connect ke Database (PostgreSQL MCP)
Ini use case paling powerful buat bisnis. Claude bisa langsung query database-mu.
Install PostgreSQL MCP Server
{
"mcpServers": {
"postgres": {
"command": "npx",
"args": ["-y", "@anthropic/mcp-postgres"],
"env": {
"DATABASE_URL": "postgresql://user:password@localhost:5432/mydb"
}
}
}
}
Sekarang kamu bisa chat:
“Tampilkan 10 customer dengan total order terbesar bulan ini”
Claude akan: 1. Cek schema database 2. Generate SQL query yang benar 3. Eksekusi query 4. Format hasil jadi tabel atau narasi
Tips keamanan: Bikin database user read-only khusus untuk MCP. Jangan pakai admin credentials. Baca panduan amankan API key AI untuk praktik keamanan yang sama.
Step 3: Connect ke Notion & Google Drive
Untuk bisnis yang pakai Notion atau Google Drive sebagai knowledge base:
Notion MCP Server
{
"mcpServers": {
"notion": {
"command": "npx",
"args": ["-y", "@anthropic/mcp-notion"],
"env": {
"NOTION_API_KEY": "secret_xxxxxxxxxxxx"
}
}
}
}
Use case: “Baca semua page di workspace Marketing dan bikin summary roadmap Q3”.
Google Drive MCP Server
{
"mcpServers": {
"gdrive": {
"command": "npx",
"args": ["-y", "@anthropic/mcp-gdrive"],
"env": {
"GOOGLE_APPLICATION_CREDENTIALS": "/path/to/service-account.json"
}
}
}
}
Use case: “Cari semua spreadsheet yang berisi data penjualan 2026 dan analisis trend-nya”.
Kombinasi Notion + Google Drive + Database = Claude punya akses ke hampir semua data bisnismu. Satu chat bisa cross-reference antar sumber.
Step 4: Contoh Workflow Otomatisasi Bisnis
Workflow 1: Customer Support Otomatis
Tools: PostgreSQL + Notion + Slack MCP
Chat ke Claude:
“Cek 5 tiket support yang belum resolved di database. Untuk tiap tiket, cari solusi di knowledge base Notion. Bikin draft reply untuk masing-masing, dan kirim ke channel Slack #support-drafts untuk review.”
Claude akan: 1. Query tiket dari DB 2. Search Notion untuk solusi 3. Draft reply personal untuk tiap customer 4. Post draft ke Slack
Yang kamu lakukan: review draft, approve, kirim. 30 menit kerja jadi 5 menit.
Untuk workflow customer support yang lebih advanced dengan RAG, baca panduan bikin chatbot FAQ dari dokumen PDF.
Workflow 2: Analisis Competitor Mingguan
Tools: Google Drive + Web search + Notion MCP
Chat ke Claude:
“Baca spreadsheet data kompetitor di Google Drive. Cari info terbaru tentang 3 kompetitor top. Bandingkan pricing dan fitur mereka dengan produk kita yang ada di Notion. Bikin report perbandingan dan simpan ke Notion.”
Setiap minggu, cukup satu prompt. Claude ambil data dari mana-mana, analisis, dan simpan hasilnya.
Kalau mau lebih mendalam soal riset kompetitor, baca juga cara pakai AI untuk riset kompetitor & analisis pasar.
Workflow 3: Content Pipeline dari Data Sales
Tools: PostgreSQL + Filesystem MCP
Chat ke Claude:
“Query data penjualan 30 hari terakhir. Identifikasi 3 produk terlaris dan 3 yang drop. Bikin draft artikel blog untuk masing-masing produk terlaris (highlight kenapa laris), dan analisis untuk produk yang drop (kemungkinan penyebab + rekomendasi). Simpan ke folder content-drafts.”
Ini bikin content marketing-mu selalu data-driven, bukan asumsi.
Step 5: Pakai MCP via API Key (untuk Developer)
Kalau kamu developer dan mau bikin aplikasi yang pakai MCP + Claude API, pendekatannya sedikit beda. Kamu pakai MCP SDK.
Install MCP SDK
pip install anthropic mcp
Contoh: Bikin custom MCP server
from mcp import Server, Tool
import anthropic
server = Server("my-business-tools")
@server.tool("get_sales_data")
def get_sales_data(period: str = "30d"):
"""Ambil data penjualan dari periode tertentu"""
# Query database di sini
return {"total_sales": 150000000, "orders": 342, "avg_order": 438596}
@server.tool("send_whatsapp")
def send_whatsapp(phone: str, message: str):
"""Kirim pesan WhatsApp ke customer"""
# Integrasi WhatsApp API di sini
return {"status": "sent", "phone": phone}
# Run server
server.run()
Sekarang Claude API bisa panggil tool get_sales_data dan send_whatsapp saat processing chat. Ini cara bikin AI agent yang benar-benar “bisa aksi”, bukan cuma ngomong.
Kalau kamu baru mulai dengan Claude API secara umum, baca dulu perbandingan OpenAI API vs Claude API vs Gemini API biar paham posisi Claude di ekosistem.
Step 6: Tips Optimasi MCP Workflow
1. Batasi scope akses
Jangan kasih Claude akses ke semua database atau semua folder. Bikin MCP server spesifik per use case. Akses terlalu luas = Claude bingung + risiko keamanan.
2. Cache hasil query berat
Kalau query database berat dan sering dipakai, simpan hasilnya. MCP server bisa return cached data untuk query yang sama. Hemat waktu dan resource DB.
3. Pakai prompt yang spesifik
Daripada “analisis data saya”, tulis: “Query tabel orders, filter status=completed, group by product_category, urutkan by total_revenue desc, ambil top 5”. Semakin spesifik, semakin akurat hasil MCP.
4. Monitor API usage
MCP bikin Claude panggil API lebih sering (karena tiap tool call = request tambahan). Kalau pemakaianmu tinggi, terapkan tips hemat kuota token API AI: batasi tool calls, pakai model yang lebih kecal untuk task simple, dan cache hasil.
MCP Server Populer yang Wajib Coba
| MCP Server | Fungsi | Cocok untuk |
|---|---|---|
| filesystem | Akses file lokal | Developer, content writer |
| postgres | Query PostgreSQL | Bisnis dengan DB |
| notion | Baca/tulis Notion | Knowledge management |
| gdrive | Akses Google Drive | Tim yang pakai Google Workspace |
| github | Akses repo GitHub | Developer, code review |
| slack | Baca/kirim Slack message | Team communication |
| brave-search | Web search real-time | Riset, monitoring |
| puppeteer | Web scraping/browser automation | Data collection |
Semua server di atas open-source dan gratis. Cukup butuh Claude Pro atau API key untuk mulai.
Estimasi Biaya MCP Workflow
| Komponen | Biaya |
|---|---|
| Claude Pro (untuk Desktop MCP) | ~$20/bulan atau via reseller |
| Claude API (untuk custom app) | Pay-per-use, mulai ratusan ribu/bulan |
| MCP Server | Gratis (open-source) |
| Database/tools | Sesuai infrastruktur existing |
Kalau kamu baru mulai, pakai Claude Pro + MCP Desktop dulu. Nggak perlu coding, cukup edit config JSON. Kalau butuh customisasi lebih, baru naik ke API key + SDK.
Buat yang mau hemat, baca cara hemat langganan AI untuk freelancer & pelajar — prinsipnya sama: mulai dari yang gratis/termurah, scale up saat ROI sudah jelas.
Kesimpulan
Claude MCP itu perubahan fundamental cara AI berinteraksi dengan data bisnismu. Dari “kamu yang kasih konteks ke AI” jadi “AI yang ambil konteks sendiri”. Untuk bisnis online yang data-nya tersebar di database, Notion, Google Drive, dan Slack — MCP bisa hemat puluhan jam per minggu.
Mulai dari satu MCP server (filesystem atau Notion), test workflow sederhana, terus tambah tool satu per satu. Jangan langsung connect semua — nanti Claude kebablasan dan kamu bingung manage aksesnya.
Yang penting: amankan credentials, batasi scope akses, dan monitor API usage. MCP itu enak dipakai, tapi seperti semua tool powerful — kalau nggak dikelola, bisa jadi masalah. Mulai kecil, test, scale. Itu cara benar adopt teknologi baru.