FormPilot
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., "@FormPilotinspect the form on https://example.com/apply and autofill with my Excel data"
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.
FormPilot
Isi form berulang dari Excel—lebih cepat, tetap terkendali.
Demo · Browser Bridge · Keamanan

FormPilot adalah aplikasi web untuk membantu operator memindahkan data dari file Excel ke form web yang berulang. Pengguna login sendiri ke situs tujuan, memilih file Excel di perangkatnya, lalu FormPilot membantu mencocokkan dan mengisi field form. Untuk form yang memiliki tabel, tombol Edit, modal, atau wizard, pengguna dapat menyimpan alur khusus untuk form tersebut.
Untuk siapa?
Tim operasional yang menginput banyak data ke portal web.
Admin yang menerima data dalam Excel dan harus mengisi form yang sama berulang kali.
Tim yang membutuhkan alur pengisian konsisten, tanpa menyerahkan kredensial situs kepada aplikasi.
Related MCP server: formfill-mcp
Cara kerja
Buka situs tujuan di tab lain dan login seperti biasa.
Hubungkan tab yang dipilih melalui Browser Bridge.
Pilih file Excel, sheet, header, dan baris yang ingin diisi. File dibaca secara lokal di browser.
FormPilot mencocokkan kolom Excel dengan field form. Aturan yang tersimpan untuk situs tersebut digunakan lebih dulu; AI hanya membantu bagian yang belum jelas.
Tinjau hasilnya, isi sebagai draft atau kirim sesuai kebijakan yang dipilih.
Riwayat sukses menandai baris yang selesai dan memilih baris berikutnya secara otomatis.
Fitur utama
Excel tetap lokal — workbook tidak diunggah ke server FormPilot.
Alur per form — simpan langkah seperti “cari data → klik Edit → isi modal → berhenti sebelum Simpan” untuk satu situs/form tertentu.
Knowledge Packs — simpan jawaban atau aturan yang berulang untuk akun dan situs Anda.
AI hemat token — pencocokan nama dilakukan lokal terlebih dahulu; AI hanya menerima metadata field dan nama kolom yang ambigu, bukan nilai Excel.
AI bawaan atau BYOK — gunakan AI bawaan untuk kebutuhan sederhana atau masukkan endpoint, model, dan API key OpenAI-compatible milik Anda.
Riwayat aman — riwayat sukses menyimpan hash baris, bukan isi data Excel.
Batas keamanan
Password, PIN, OTP, CAPTCHA, token, CVV/CVC, dan secret tidak dikirim ke AI dan tidak diisi otomatis.
Login situs target tetap dilakukan oleh pengguna di browser target; cookie dan password tidak diekspor oleh Browser Bridge.
Submit dapat diatur per akun: selalu tanyakan atau lanjut tanpa dialog tambahan.
Tombol akhir seperti Simpan, Kirim, Hapus, atau Bayar tidak dimasukkan dalam workflow AI; skenario berhenti sebelum tindakan tersebut.
API key BYOK dienkripsi per pengguna dan tidak pernah ditampilkan kembali.
Menjalankan secara lokal
Prasyarat: Node.js 22+ dan akun Cloudflare bila ingin memakai D1/Workers.
git clone https://github.com/Aksara-Teknologi/FormPilot.git
cd FormPilot
npm install
cp .env.example .env.local
npm run devBuka http://localhost:3000. Untuk mengisi form sungguhan, instal extension dari folder extension melalui mode Load unpacked pada Chrome atau Edge. Instalasi publik juga tersedia di halaman /extension aplikasi.
Deploy sendiri ke Cloudflare Workers
Bagian ini untuk instalasi mandiri. Ganti semua nilai contoh dengan domain dan akun Anda sendiri.
1. Siapkan resource Cloudflare
Buat database D1.
Buat Worker dan custom domain jika diperlukan.
Salin
.env.exampleuntuk mencatat konfigurasi yang dibutuhkan.Isi GitHub repository secrets/variables atau environment deployment Anda sendiri.
Variabel non-rahasia yang diperlukan:
CLOUDFLARE_D1_DATABASE_ID=
CLOUDFLARE_D1_DATABASE_NAME=
CLOUDFLARE_WORKER_NAME=
FORMPILOT_HOSTNAME=app.example.com
GOOGLE_CLIENT_ID=
OPENAI_BASE_URL=https://api.openai.com/v1
OPENAI_MODEL=Secrets yang diperlukan:
CLOUDFLARE_API_TOKEN=
APP_SIGNING_SECRET=
GOOGLE_CLIENT_SECRET=
OPENAI_API_KEY=OPENAI_API_KEY dipakai sebagai AI bawaan. Pengguna tetap dapat memilih BYOK bila fitur tersebut diaktifkan.
2. Konfigurasikan Google Sign-In
Buat OAuth Client bertipe Web application di Google Cloud Console.
Tambahkan origin aplikasi Anda, misalnya
https://app.example.com.Tambahkan redirect URI:
https://app.example.com/api/auth/google/callback.Simpan client ID sebagai
GOOGLE_CLIENT_IDdan client secret sebagaiGOOGLE_CLIENT_SECRET.Opsional: batasi domain email melalui
GOOGLE_ALLOWED_DOMAINS, dipisahkan koma.
FormPilot meminta scope openid email profile saja; tidak meminta akses Gmail atau Drive.
3. Jalankan migrasi dan deploy
Repository ini memiliki workflow GitHub Actions Release production. Atau deploy dengan Wrangler sesuai konfigurasi produksi yang dihasilkan proyek:
npm run check
npm run release:verify
npm run release:config
cd dist/server
npx wrangler d1 migrations apply DB --remote --config wrangler.production.json
npx wrangler deploy --config wrangler.production.jsonAtur secrets melalui Wrangler sebelum deploy pertama:
npx wrangler secret put APP_SIGNING_SECRET --config wrangler.production.json
npx wrangler secret put GOOGLE_CLIENT_SECRET --config wrangler.production.json
npx wrangler secret put OPENAI_API_KEY --config wrangler.production.jsonGunakan secret acak yang kuat untuk APP_SIGNING_SECRET, misalnya openssl rand -base64 32.
Konfigurasi Browser Bridge dan MCP
Browser Bridge adalah pilihan paling aman untuk situs yang pengguna login sendiri: extension hanya bekerja pada tab yang disetujui pengguna. Petunjuk instalasi ada di extension/README.md.
Instalasi yang memakai MCP server-side dapat mengatur MCP_SERVER_URL, MCP_INSPECT_TOOL, MCP_FILL_TOOL, serta secret MCP_AUTH_TOKEN. MCP harus memakai HTTPS, membatasi tab/domain yang disetujui, dan tidak mengembalikan kredensial atau data sensitif.
Validasi
npm run checkPerintah ini menjalankan lint, typecheck, test, dan audit dependensi produksi.
Kontribusi
Issue dan pull request dipersilakan. Untuk perubahan yang menyentuh autentikasi, kredensial, Browser Bridge, atau otomatisasi form, baca SECURITY.md terlebih dahulu.
Lisensi dan kredit
FormPilot dikembangkan oleh Aksara Bayu Teknologi.
This server cannot be installed
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
- Alicense-qualityDmaintenanceEnables AI agents to interact with web browsers using natural language, featuring automated browsing, form filling, vision-based element detection, and structured JSON responses for systematic browser control.Last updated61MIT
- Alicense-qualityCmaintenanceFormFill MCP — AI-powered web form automation. Fill out any online form by describing what you want. Supports Stripe payments via x402 protocol.Last updated2MIT
- Alicense-qualityCmaintenanceEnables AI assistants to perform intelligent browser automation with session-based context analysis, including navigation, form filling, and content extraction through natural language.Last updatedMIT
- Alicense-qualityDmaintenanceEnables AI agents to securely fill web forms with credentials from SecureVault, keeping raw secrets hidden from the agent.Last updated8MIT
Related MCP Connectors
AI-powered browser automation — navigate, click, fill forms, and extract data from any website.
Give AI agents access to form submissions — read, search, update, and process file attachments.
Fill existing fillable, flat and scanned PDF forms from structured data; save reusable templates
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/Aksara-Teknologi/FormPilot'
If you have feedback or need assistance with the MCP directory API, please join our Discord server