mcp-karyawan
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-karyawanlist all employees"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
mcp-karyawan
Demo sederhana MCP (Model Context Protocol) server berupa CRUD data karyawan. Dibuat untuk belajar/mengajar konsep dasar MCP tool.
Lokasi server
Seluruh server ada di satu file: main.py. Server dibuat dengan FastMCP dari SDK resmi mcp[cli], dan data karyawan disimpan in-memory (list Python) — reset tiap server di-restart.
Related MCP server: MCP Playground
Tools yang tersedia
Tool | Fungsi |
| Tambah data karyawan baru (id digenerate otomatis pakai uuid) |
| Tampilkan semua data karyawan |
| Ambil satu data karyawan berdasarkan id |
| Ubah sebagian field karyawan berdasarkan id (partial update) |
| Hapus data karyawan berdasarkan id |
Instalasi & Menghubungkan ke Claude Desktop
Pilih salah satu, tergantung tool yang biasa kamu pakai. Keduanya berakhir di langkah yang sama: mendaftarkan server ke Claude Desktop lewat command mcp install.
Opsi A — pakai uv
uv sync
uv run mcp install main.py --name karyawanOpsi B — pakai pip
python -m venv venv
source venv/bin/activate # Windows: venv\Scripts\activate
pip install "mcp[cli]>=1.28.1"
mcp install main.py --name karyawanSetelah salah satu opsi di atas dijalankan, restart Claude Desktop. Tool create_karyawan, list_karyawan, get_karyawan, update_karyawan, dan delete_karyawan akan otomatis tersedia untuk dipanggil Claude di chat.
Buka file konfigurasi Claude Desktop:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
Tambahkan entry berikut (ganti
/ABSOLUTE/PATH/TO/mcp-karyawandengan path absolut repo ini):{ "mcpServers": { "karyawan": { "command": "uv", "args": [ "--directory", "/ABSOLUTE/PATH/TO/mcp-karyawan", "run", "main.py" ] } } }Kalau pakai
pip(bukanuv), ganti"command"dengan path Python di dalam venv-mu, misalnya:{ "mcpServers": { "karyawan": { "command": "/ABSOLUTE/PATH/TO/mcp-karyawan/venv/bin/python", "args": ["/ABSOLUTE/PATH/TO/mcp-karyawan/main.py"] } } }Restart Claude Desktop.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceA small MCP server that manages a product inventory using SQLite, providing CRUD operations through exposed MCP tools.Last updated
- Flicense-qualityDmaintenanceA demonstration MCP server that provides access to a SQLite employee database with tools for querying users and profiles, sending emails via Mailtrap, and proposing project teams based on employee skills.Last updated
- Alicense-qualityBmaintenanceMCP server providing natural-language tools for managing and querying an employee database, including user CRUD, search, and statistics.Last updatedMIT
- Flicense-qualityDmaintenanceThis MCP server provides tools to manage a todo list with CRUD operations, enabling listing, creating, updating, and deleting todos.Last updated
Related MCP Connectors
An MCP server that let you interact with Cycloid.io Internal Development Portal and Platform
A basic MCP server to operate on the Postman API.
A MCP server built for developers enabling Git based project management with project and personal…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/michaeltio/mcp-demo'
If you have feedback or need assistance with the MCP directory API, please join our Discord server