BaaS-MCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search-documentsA | AIApp BaaS 인증 시스템 문서를 키워드 배열로 검색합니다. API 문서, 구현 가이드, 보안 가이드, 예제 코드 등 모든 문서를 통합 검색합니다. 사용 예시:
키워드 배열 사용 (권장):
카테고리 필터링:
문장 사용 (폴백):
|
| get-document-by-idB | 문서 ID로 특정 BaaS 인증 시스템 문서의 전체 내용을 조회합니다. |
| get-project-configB | 현재 MCP 서버에 설정된 프로젝트 ID를 확인합니다. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 3 tools
Each tool has a clearly distinct purpose with no overlap: get-document-by-id retrieves a specific document by ID, get-project-config returns project configuration, and search-documents performs keyword-based searches across all documents. The descriptions clearly differentiate between individual document lookup, project-level settings, and broad search functionality.
The naming is mostly consistent with a verb-noun pattern (get-document-by-id, get-project-config, search-documents), using kebab-case throughout. The minor deviation is that 'get-document-by-id' includes a preposition ('by-id') while others do not, but the overall pattern remains clear and readable.
With 3 tools, the count is reasonable for a BaaS authentication system server, covering core operations: retrieving documents, checking project config, and searching. It might be slightly thin for full CRUD coverage (e.g., no create/update/delete tools), but it aligns well with a read-focused documentation helper.
The tool set covers key read operations for a documentation system but has notable gaps. It lacks update, delete, or creation tools for documents, which could limit agent workflows if modifications are needed. However, for a search-and-retrieve purpose, it provides essential functionality with get and search tools.