We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/joelmnz/mcp-markdown-manager'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# Authentication token for all interfaces (REST API, MCP server, Web UI)
AUTH_TOKEN=your-secret-token-here
# Directory where markdown articles are stored
DATA_DIR=./data
# Server port
PORT=5000
# Enable/disable MCP server (case insensitive: true/True/TRUE)
MCP_SERVER_ENABLED=true
# Semantic search configuration
SEMANTIC_SEARCH_ENABLED=true
EMBEDDING_PROVIDER=ollama
EMBEDDING_MODEL=nomic-embed-text
OLLAMA_BASE_URL=http://localhost:11434
OPENAI_API_KEY=
CHUNK_SIZE=500
CHUNK_OVERLAP=50