smithery.yaml•1.57 kB
runtime: typescript
name: "MAGMA Handbook Advanced"
description: "Advanced MCP server providing AI access to MAGMA computational algebra system documentation with hybrid search capabilities"
version: "2.1.0"
author: "Baek Jae Hyun"
homepage: "https://github.com/LeGenAI/mcp-magma-handbook"
tags:
- mathematics
- computational-algebra
- magma
- search
- ai-assistant
config:
- name: openaiApiKey
description: "Your OpenAI API key for embeddings generation (you pay for your own usage)"
required: true
env: true
- name: debug
description: "Enable debug logging"
required: false
default: true
examples:
claude-desktop: |
{
"mcpServers": {
"magma-handbook": {
"command": "npx",
"args": [
"-y",
"@smithery/cli@latest",
"run",
"@LeGenAI/mcp-magma-handbook",
"--key",
"{{smitheryApiKey}}",
"--profile",
"{{profileId}}"
],
"env": {
"OPENAI_API_KEY": "{{openaiApiKey}}"
}
}
}
}
cursor: |
{
"mcpServers": {
"magma-handbook": {
"command": "npx",
"args": [
"-y",
"@smithery/cli@latest",
"run",
"@LeGenAI/mcp-magma-handbook",
"--key",
"{{smitheryApiKey}}",
"--profile",
"{{profileId}}"
],
"env": {
"OPENAI_API_KEY": "{{openaiApiKey}}"
}
}
}
}