We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Platano78/faulkner-db'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# Graphiti Configuration for Faulkner DB
# NOTE: Sensitive values should be set via environment variables
# FalkorDB Connection
falkordb:
host: localhost
port: 6379
database: 0
password: null
max_connections: 50
timeout: 30
# PostgreSQL Metadata Store
# SECURITY: Use environment variables for credentials in production
# Set POSTGRES_PASSWORD environment variable before running
postgres:
host: localhost
port: 5432
database: graphiti
user: graphiti
# Password loaded from environment variable POSTGRES_PASSWORD
# For local development, set: export POSTGRES_PASSWORD=your_password
# See docker/.env.example for Docker Compose configuration
password: null # Set via POSTGRES_PASSWORD env var
# Graph Configuration
graph:
default_graph_name: faulkner_knowledge_graph
enable_temporal_queries: true
enable_relationship_traversal: true
max_traversal_depth: 5
# Performance
performance:
query_cache_enabled: true
cache_ttl_seconds: 3600
batch_size: 100
parallel_queries: true
# Logging
logging:
level: INFO
format: "%(asctime)s - %(name)s - %(levelname)s - %(message)s"
file: logs/graphiti.log