- Home
- MCP servers
- Baas
Baas
- typescript
0
GitHub Stars
typescript
Language
7 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"mbaas-inc-baas-mcp": {
"command": "npx",
"args": [
"-y",
"@mbaas/baas-mcp@latest"
],
"env": {
"YOUR_PROJECT_ID": "proj_abc123"
}
}
}
}You have an MCP server that integrates the AIApp BaaS authentication system using standard inputs and outputs. It provides tools to search, retrieve, and configure BaaS documents and enables automated client code generation across frameworks, helping you build consistent MCP clients quickly.
How to use
You run the MCP server locally and connect your MCP client to it using the standard MCP workflow. This server exposes tools that let you search for BaaS authentication system documents, fetch a document by its ID, and check the currently configured project for the MCP setup. Use these tools to create your own client experiences, wire up keyword-based searches, and retrieve exact documentation content as needed.
Typical usage patterns include: - Searching the BaaS authentication docs with keywords to surface relevant API, security, and integration guidance. - Retrieving a complete document by its ID for precise implementation details. - Verifying and inspecting the current project configuration to ensure the correct project context is active.
How to install
{
"mcpServers": {
"baas_mcp": {
"command": "npx",
"args": ["-y", "@mbaas/baas-mcp@latest"]
}
}
}
Optionally, if you want to bind a specific Project ID to the MCP server at startup, extend the command arguments to include the project ID value as shown below.
{
"mcpServers": {
"baas_mcp": {
"command": "npx",
"args": [
"-y",
"@mbaas/baas-mcp@latest",
"--project-id=your-actual-project-id"
]
}
}
}
Configuration and notes
Prerequisites: you need Node.js 18 or later installed on your system to run the MCP server.
Package managers used: npm and npx are employed to install and run the MCP server.
Tools in this MCP server
- search-documents — Search the BaaS authentication system documents by keywords and category to surface relevant API, templates, security, examples, and dev content.
- get-document-by-id — Retrieve the full content of a document by its ID.
- get-project-config — Check the currently configured MCP project ID.
Troubleshooting and tips
If the MCP server fails to start, verify that Node.js 18+ is installed and that you are running the latest MCP package. Ensure your command line contains the proper arguments and that your project ID (if used) is correct.
Available tools
search-documents
Search the BaaS authentication system documentation using a keyword array and optional category to surface relevant API, templates, security, examples, and dev content.
get-document-by-id
Fetch the complete content of a document by its numeric ID.
get-project-config
Query the MCP server for the currently configured project ID.