We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/andnp/ragdocs-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
config-development.toml•1.18 KiB
# Development Configuration
# For testing and local development
[server]
# Listen only on localhost
host = "127.0.0.1"
port = 8000
[indexing]
# Use local test documents
documents_path = "./test-docs"
# Store indices in local temp directory
index_path = "./.dev-indices"
# Index all subdirectories
recursive = true
# Optional: Customize file patterns for testing
# include = ["**/*.md", "**/*.txt"]
# exclude = ["**/node_modules/**", "**/.git/**"]
# exclude_hidden_dirs = true # Exclude hidden directories (enabled by default)
# reconciliation_interval_seconds = 300 # More frequent for development (5 min)
[parsers]
"**/*.md" = "MarkdownParser"
"**/*.markdown" = "MarkdownParser"
[search]
# Balanced weights for testing all strategies
semantic_weight = 1.0
keyword_weight = 1.0
# Moderate recency bias
recency_bias = 0.5
# Lower RRF constant to test top-result dominance
rrf_k_constant = 40
[llm]
# Use local embeddings (no external dependencies)
embedding_model = "local"
# Development Notes:
# - Fast indexing with local embeddings
# - Index rebuilds are quick (small corpus)
# - Indices stored locally (won't interfere with production)
# - Easy to wipe and rebuild: rm -rf ./.dev-indices