We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nickels/sap-ai-docs-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
QUICKSTART.md•2.05 KiB
# Quick Start Guide
## Installation
1. **Clone the repository** (if not already done):
```bash
git clone <repository-url>
cd dlwr-dnl-ai-core-documentation-mcp
```
2. **Install dependencies**:
```bash
source ~/.zshrc && nvm use
npm install
```
3. **Clone SAP AI Core documentation** (if not already initialized):
```bash
git submodule update --init --recursive
```
4. **Build the server**:
```bash
npm run build
```
## Configure Claude Desktop
1. Open Claude Desktop configuration file:
```bash
code ~/Library/Application\ Support/Claude/claude_desktop_config.json
```
2. Add the MCP server configuration:
```json
{
"mcpServers": {
"sap-ai-core-docs": {
"command": "node",
"args": [
"/absolute/path/to/dlwr-dnl-ai-core-documentation-mcp/build/index.js"
]
}
}
}
```
Replace `/absolute/path/to/` with your actual path.
3. Restart Claude Desktop
## Verify Installation
In Claude Desktop, you should now see the SAP AI Core documentation tools available:
- `search_ai_core_docs`
- `get_ai_core_document`
- `get_ai_core_topic`
- `list_ai_core_categories`
## Example Usage
Ask Claude:
- "Search SAP AI Core documentation for model training"
- "Show me the categories available in AI Core docs"
- "Get documentation about AI Core deployment"
## Troubleshooting
### Server not appearing in Claude Desktop
1. Check the path in `claude_desktop_config.json` is absolute
2. Verify the build completed successfully: `ls build/index.js`
3. Check Claude Desktop logs: `~/Library/Logs/Claude/`
4. Restart Claude Desktop completely
### Documentation not found
Ensure the submodule was cloned:
```bash
ls docs/sap-artificial-intelligence/
```
If empty, run:
```bash
git submodule update --init --recursive
```
### Build errors
Ensure you have Node.js 20+:
```bash
node --version
```
Clean and rebuild:
```bash
rm -rf build node_modules
source ~/.zshrc && nvm use
npm install
npm run build
```
## Development
Watch mode for development:
```bash
npm run watch
```
Test with MCP Inspector:
```bash
npx @modelcontextprotocol/inspector node build/index.js
```