You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{name: "filesystem-mcp-server",version: "0.5.1",config: {// Directories the server is allowed to access (required)allowedDirectories: string[],// Maximum file size for read operations (optional)maxFileSize: number,// File patterns to ignore (optional)ignorePatterns: string[]}}
Fetch Server
{name: "fetch-mcp-server",version: "0.5.1",config: {// Maximum content size to fetch (optional)maxContentSize: number,// Timeout in milliseconds (optional)timeout: number,// User agent string (optional)userAgent: string,// Follow redirects (optional)followRedirects: boolean}}
Brave Search Server
{name: "brave-search-mcp-server",version: "0.5.1",config: {// Required environment variablesenv: {BRAVE_API_KEY: string},// Rate limitsrateLimit: {perSecond: 1,perMonth: 15000},// Search optionssearch: {defaultCount: number,// Default number of resultsmaxCount: 20,// Maximum results per requestmaxOffset: 9// Maximum page offset}}}
{name: "slack-mcp-server",version: "0.5.1",config: {// Required environment variablesenv: {SLACK_BOT_TOKEN: string,SLACK_TEAM_ID: string},// Optional settingssettings: {defaultLimit: number,// Default number of items per page (max 1000)retryOnRateLimit: boolean,// Whether to retry on rate limit errorsretryCount: number,// Maximum number of retriesincludeLabels: boolean,// Include labels in user profilesexcludeArchived: boolean// Exclude archived channels}}}
Environment Variables Summary
Server
Required Variables
Optional Variables
Brave Search
BRAVE_API_KEY
None
GitHub
GITHUB_PERSONAL_ACCESS_TOKEN
None
GitLab
GITLAB_PERSONAL_ACCESS_TOKEN
GITLAB_API_URL
PostgreSQL
PGHOST, PGPORT, PGDATABASE, PGUSER, PGPASSWORD
PGSSLMODE
Google Drive
None (uses credentials file)
None
Slack
SLACK_BOT_TOKEN, SLACK_TEAM_ID
None
Command Line Arguments Summary
Server
Required Arguments
Optional Arguments
Filesystem
allowedDirectories
None
SQLite
--db-path
None
Git
--repository
-v, --verbose
Others
None
None
Rate Limits and Quotas
Server
Limits
Brave Search
1 request/second, 15000 requests/month
GitHub
Depends on API token type
GitLab
Depends on API token type
Slack
Depends on subscription type
Google Drive
Depends on quota settings in Google Cloud Console
Security Notes
API Keys and Tokens: Never commit API keys or tokens to version control. Use environment variables or secure configuration files.
File Access: The Filesystem server should be configured to access only necessary directories.
Database Access: PostgreSQL and SQLite servers should use read-only users when possible.
SSL/TLS: Enable SSL/TLS for database connections in production environments.