modelscope·@adityaldy/mcp-training
暂无描述。
MCP Server untuk menjawab pertanyaan seputar pencairan keuangan beasiswa LPDP menggunakan RAG (Retrieval Augmented Generation) dengan Pinecone dan Gemini 2.0 Flash.
git clone <repository-url>
cd training-vibecode-mcp
# macOS dengan Homebrew
brew install python@3.11
# Ubuntu/Debian
sudo apt update
sudo apt install python3.11 python3.11-venv
python3.11 -m venv venv
source venv/bin/activate # Linux/macOS
# atau
.\venv\Scripts\activate # Windows
pip install -r requirements.txt
cp .env.example .env
# Edit .env dengan API keys Anda
Sebelum menggunakan server, index dokumen PDF ke Pinecone:
python -m scripts.index_documents
Tambahkan konfigurasi berikut ke claude_desktop_config.json:
{
"mcpServers": {
"lpdp-pencairan": {
"command": "python",
"args": ["-m", "src.server"],
"cwd": "/path/to/training-vibecode-mcp",
"env": {
"PINECONE_API_KEY": "your_key",
"GOOGLE_API_KEY": "your_key"
}
}
}
}
python -m src.server
| Tool | Deskripsi |
|---|---|
tanya_pencairan_lpdp | Menjawab pertanyaan umum tentang pencairan beasiswa |
cari_komponen_dana | Mencari informasi komponen dana spesifik |
cek_batas_waktu | Mengecek deadline pengajuan dana |
info_dana_bulanan | Informasi living allowance per negara/kota |
cari_dokumen_persyaratan | Dokumen yang dibutuhkan untuk pengajuan |
User: Berapa living allowance untuk mahasiswa di Jepang?
Bot: Living allowance untuk mahasiswa LPDP di Jepang adalah:
- Tokyo: JPY 195,000/bulan
- Kota lain: JPY 170,000/bulan
pytest tests/
MIT License
暂无描述。
暂无描述。
一种模型上下文协议服务器,它将Wireshark的网络分析能力与Claude等人工智能系统集成在一起,允许在无需手动复制的情况下直接分析网络数据包。
通过SearchAPI.site将AI助手连接到外部数据源(如Google、Bing等),并通过模型上下文协议(MCP)实现对网络信息的安全和上下文访问。
暂无描述。
暂无描述。