We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/andychoi/mcp-strapi'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
export default ({ env }) => ({
'mcp-server': {
enabled: true,
config: {
// 'jwt' = external IdP, 'admin' = Strapi admin token, false = no auth (dev)
auth: env('MCP_AUTH_MODE', false),
},
},
'secure-documents': {
enabled: true,
config: {
auth: env('MCP_AUTH_MODE', false),
storage: {
provider: 's3',
bucket: env('S3_BUCKET', 'secure-documents'),
region: env('S3_REGION', 'us-east-1'),
endpoint: env('S3_ENDPOINT', ''),
forcePathStyle: env.bool('S3_FORCE_PATH_STYLE', false),
publicEndpoint: env('S3_PUBLIC_ENDPOINT', ''),
},
embedding: {
provider: env('EMBEDDING_PROVIDER', 'ollama'),
model: env('EMBEDDING_MODEL', 'nomic-embed-text'),
dimensions: env.int('EMBEDDING_DIMENSIONS', 768),
ollamaEndpoint: env('OLLAMA_ENDPOINT', 'http://host.docker.internal:11434'),
bedrockRegion: env('AWS_REGION', 'us-east-1'),
},
vector: {
tableName: 'document_chunks',
},
},
},
'secure-search': {
enabled: true,
config: {
auth: env('MCP_AUTH_MODE', false),
rag: {
enabled: env.bool('RAG_ENABLED', true),
provider: env('RAG_PROVIDER', 'ollama'),
model: env('RAG_MODEL', ''),
ollamaEndpoint: env('OLLAMA_ENDPOINT', 'http://host.docker.internal:11434'),
bedrockRegion: env('AWS_REGION', 'us-east-1'),
},
},
},
});