MCP Server
Active
MIT
io.github.dewtech-technologies/tubemind-secure-mcp MCP Server
io.github.dewtech-technologies/tubemind-secure-mcp
What is the io.github.dewtech-technologies/tubemind-secure-mcp MCP server?
Secure MCP server for YouTube intelligence — 18 tools, OAuth2, OWASP Top 10 controls.
How to install io.github.dewtech-technologies/tubemind-secure-mcp
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
YOUTUBE_CLIENT_IDrequiredGoogle OAuth2 Client ID for YouTube Data API v3 + Analytics API
YOUTUBE_CLIENT_SECRETrequiredsecretGoogle OAuth2 Client Secret
YOUTUBE_REDIRECT_URIOAuth2 redirect URI (must match Google Cloud Console)
TOKEN_ENCRYPTION_KEYrequiredsecret64-char hex key for AES-256-GCM token encryption at rest. Generate with: openssl rand -hex 32
RATE_LIMIT_PER_MINUTEMax tool invocations per minute
REQUEST_TIMEOUT_MSHTTP request timeout (ms)
AUDIT_LOG_PATHPath to the audit log file
NODE_ENVproduction | development
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"tubemind-secure-mcp": {
"command": "npx",
"args": [
"-y",
"tubemind-secure-mcp"
],
"env": {
"YOUTUBE_CLIENT_ID": "<YOUR_YOUTUBE_CLIENT_ID>",
"YOUTUBE_CLIENT_SECRET": "<YOUR_YOUTUBE_CLIENT_SECRET>",
"YOUTUBE_REDIRECT_URI": "<YOUR_YOUTUBE_REDIRECT_URI>",
"TOKEN_ENCRYPTION_KEY": "<YOUR_TOKEN_ENCRYPTION_KEY>",
"RATE_LIMIT_PER_MINUTE": "<YOUR_RATE_LIMIT_PER_MINUTE>",
"REQUEST_TIMEOUT_MS": "<YOUR_REQUEST_TIMEOUT_MS>",
"AUDIT_LOG_PATH": "<YOUR_AUDIT_LOG_PATH>",
"NODE_ENV": "<YOUR_NODE_ENV>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"tubemind-secure-mcp": {
"command": "npx",
"args": [
"-y",
"tubemind-secure-mcp"
],
"env": {
"YOUTUBE_CLIENT_ID": "<YOUR_YOUTUBE_CLIENT_ID>",
"YOUTUBE_CLIENT_SECRET": "<YOUR_YOUTUBE_CLIENT_SECRET>",
"YOUTUBE_REDIRECT_URI": "<YOUR_YOUTUBE_REDIRECT_URI>",
"TOKEN_ENCRYPTION_KEY": "<YOUR_TOKEN_ENCRYPTION_KEY>",
"RATE_LIMIT_PER_MINUTE": "<YOUR_RATE_LIMIT_PER_MINUTE>",
"REQUEST_TIMEOUT_MS": "<YOUR_REQUEST_TIMEOUT_MS>",
"AUDIT_LOG_PATH": "<YOUR_AUDIT_LOG_PATH>",
"NODE_ENV": "<YOUR_NODE_ENV>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"tubemind-secure-mcp": {
"command": "npx",
"args": [
"-y",
"tubemind-secure-mcp"
],
"env": {
"YOUTUBE_CLIENT_ID": "<YOUR_YOUTUBE_CLIENT_ID>",
"YOUTUBE_CLIENT_SECRET": "<YOUR_YOUTUBE_CLIENT_SECRET>",
"YOUTUBE_REDIRECT_URI": "<YOUR_YOUTUBE_REDIRECT_URI>",
"TOKEN_ENCRYPTION_KEY": "<YOUR_TOKEN_ENCRYPTION_KEY>",
"RATE_LIMIT_PER_MINUTE": "<YOUR_RATE_LIMIT_PER_MINUTE>",
"REQUEST_TIMEOUT_MS": "<YOUR_REQUEST_TIMEOUT_MS>",
"AUDIT_LOG_PATH": "<YOUR_AUDIT_LOG_PATH>",
"NODE_ENV": "<YOUR_NODE_ENV>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"tubemind-secure-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"tubemind-secure-mcp"
],
"env": {
"YOUTUBE_CLIENT_ID": "<YOUR_YOUTUBE_CLIENT_ID>",
"YOUTUBE_CLIENT_SECRET": "<YOUR_YOUTUBE_CLIENT_SECRET>",
"YOUTUBE_REDIRECT_URI": "<YOUR_YOUTUBE_REDIRECT_URI>",
"TOKEN_ENCRYPTION_KEY": "<YOUR_TOKEN_ENCRYPTION_KEY>",
"RATE_LIMIT_PER_MINUTE": "<YOUR_RATE_LIMIT_PER_MINUTE>",
"REQUEST_TIMEOUT_MS": "<YOUR_REQUEST_TIMEOUT_MS>",
"AUDIT_LOG_PATH": "<YOUR_AUDIT_LOG_PATH>",
"NODE_ENV": "<YOUR_NODE_ENV>"
}
}
}
}Claude Code
claude mcp add tubemind-secure-mcp --env YOUTUBE_CLIENT_ID=<YOUR_YOUTUBE_CLIENT_ID> --env YOUTUBE_CLIENT_SECRET=<YOUR_YOUTUBE_CLIENT_SECRET> --env YOUTUBE_REDIRECT_URI=<YOUR_YOUTUBE_REDIRECT_URI> --env TOKEN_ENCRYPTION_KEY=<YOUR_TOKEN_ENCRYPTION_KEY> --env RATE_LIMIT_PER_MINUTE=<YOUR_RATE_LIMIT_PER_MINUTE> --env REQUEST_TIMEOUT_MS=<YOUR_REQUEST_TIMEOUT_MS> --env AUDIT_LOG_PATH=<YOUR_AUDIT_LOG_PATH> --env NODE_ENV=<YOUR_NODE_ENV> -- npx -y tubemind-secure-mcpRelated MCP servers
Secure MCP server for Obsidian with OWASP Top 10 controls and full audit logging.
0
View repository →JavaScript