# LaSalle College Jakarta > emimpin global dalam pendidikan kreatif dengan lebih dari dua dekade keunggulan, LaSalle College Indonesia beroperasi dari kampus Jakarta, menawarkan diploma, gelar sarjana, dan sertifikat yang diakui secara internasional dalam bidang Fashion, Desain Interior, Media Digital, Desain Game, Fotografi, Film, dan Tata Rias Artistik. Sebagai pelopor pendidikan desain dan seni terapan yang berfokus pada industri, kami menyediakan standar pendidikan Kanada langsung di Indonesia. Bagian dari jaringan LCI Education dengan 23 kampus di 5 benua, kami telah menghasilkan ribuan profesional kreatif dengan 69% lulusan mendapatkan pekerjaan 6 bulan sebelum kelulusan. Komitmen kami terhadap keunggulan didukung oleh fakultas terdepan di industri, fasilitas canggih, dan koneksi yang kuat dengan industri kreatif Indonesia. ## Dokumentasi Utama ### Faculties and schools *No faculties currently available.* ### Programs and courses *No programs currently available.* ### Penerimaan dan Layanan Mahasiswa - [Penerimaan](/id/penerimaan-dan-bantuan): Pendaftaran sepanjang tahun dengan bimbingan personal - [Jenis Program](/id/program-dan-kursus/jenis-program): Diploma (2 tahun), Sertifikat (1 tahun), Gelar Sarjana (4 tahun) - [Pilihan Studi](/id/program-dan-kursus/pilihan-studi): Tersedia studi penuh waktu dan paruh waktu - [Bantuan Keuangan](/id/penerimaan-dan-bantuan/bantuan-keuangan): Bantuan biaya kuliah dan rencana pembayaran - [Dukungan Mahasiswa](/id/kehidupan-kampus/layanan-mahasiswa): Dukungan komprehensif selama studi ## API Access For AI agents, chatbots, and developers — two ways to access our content programmatically: ### Search API (HTTP) Search programs, faculties, events, news, and more via simple HTTP GET requests. - **Endpoint**: `GET https://lasallecollegeindonesia.lcieducation.com/api/search` - **Schema / Discovery**: `GET https://lasallecollegeindonesia.lcieducation.com/api/search/schema?locale=id` - **Authentication**: None required (public) **Quick examples**: - Search programs: `https://lasallecollegeindonesia.lcieducation.com/api/search?locale=id&q=design` - Filter by faculty: `https://lasallecollegeindonesia.lcieducation.com/api/search?locale=id&faculty=Design` - List events: `https://lasallecollegeindonesia.lcieducation.com/api/search?type=event&locale=id` - Latest news: `https://lasallecollegeindonesia.lcieducation.com/api/search?type=news&locale=id&sort=date` - All content types: `https://lasallecollegeindonesia.lcieducation.com/api/search?type=all&locale=id&q=design` Supports 7 content types: programs, faculties, fields of study, pages, events, news, stories. ### MCP Server (AI Agents) For AI agents that support the [Model Context Protocol](https://modelcontextprotocol.io), a full MCP server is available with 15 tools, conversation context, and structured responses. - **Endpoint**: `POST https://lasallecollegeindonesia.lcieducation.com/api/mcp` - **Protocol**: JSON-RPC 2.0 over Streamable HTTP (stateless) - **Authentication**: None required (public) **Available tools**: search_programs, get_program, compare_programs, search_faculties, search_fields_of_study, get_campus, search_global, search_pages, search_site, search_faq, search_events, search_news, search_stories **Available resources**: lci://search/schema, lci://search/instructions, lci://search/facets/{locale}, lci://search/facets/{locale}/{type} **Client configuration** (Claude Desktop, Cursor, etc.): ```json { "mcpServers": { "lasallecollegeindonesia": { "type": "streamableHttp", "url": "https://lasallecollegeindonesia.lcieducation.com/api/mcp" } } } ``` **Recommended first step**: Read the `lci://search/schema` and `lci://search/facets/{locale}` resources — they provide available parameters, valid filter values, and AI behavior instructions. * *Required headers**: - `Content-Type: application/json` - `Accept: application/json, text/event-stream` (both values required per MCP Streamable HTTP spec) * *Integration tips**: - Always call `list_facets` before `search_programs` to discover valid filter values (exact match required — e.g. "Montréal" not "Montreal", "IN-CLASS LEARNING" not "on-campus") - Pass `suggestedContext` from previous responses to maintain conversational continuity - All URLs include UTM tracking (`utm_source=mcp&utm_medium=ai-agent`) ---