package.json•2.08 kB
{
"name": "@king-of-the-grackles/reddit-research-mcp",
"version": "1.0.0",
"description": "Reddit Research MCP Server - Transform Reddit into your personal research assistant",
"author": "king-of-the-grackles",
"license": "MIT",
"homepage": "https://github.com/king-of-the-grackles/reddit-research-mcp",
"repository": {
"type": "git",
"url": "https://github.com/king-of-the-grackles/reddit-research-mcp.git"
},
"scripts": {
"start": "python src/server.py"
},
"mcp": {
"type": "stdio",
"command": "python",
"args": ["src/server.py"],
"configSchema": {
"type": "object",
"required": ["REDDIT_CLIENT_ID", "REDDIT_CLIENT_SECRET", "REDDIT_USER_AGENT"],
"properties": {
"REDDIT_CLIENT_ID": {
"type": "string",
"title": "Reddit Client ID",
"description": "Your Reddit application client ID from reddit.com/prefs/apps"
},
"REDDIT_CLIENT_SECRET": {
"type": "string",
"title": "Reddit Client Secret",
"description": "Your Reddit application client secret"
},
"REDDIT_USER_AGENT": {
"type": "string",
"title": "Reddit User Agent",
"description": "User agent string for Reddit API (e.g., 'MCP:reddit-research:v1.0')"
},
"CHROMA_PROXY_URL": {
"type": "string",
"title": "ChromaDB Proxy URL",
"description": "URL of the ChromaDB proxy server (optional, uses default if not set)"
},
"CHROMA_PROXY_API_KEY": {
"type": "string",
"title": "ChromaDB Proxy API Key",
"description": "API key for authenticating with the ChromaDB proxy server"
}
}
},
"exampleConfig": {
"REDDIT_CLIENT_ID": "your_client_id_here",
"REDDIT_CLIENT_SECRET": "your_client_secret_here",
"REDDIT_USER_AGENT": "MCP:reddit-research:v1.0 (by /u/yourusername)",
"CHROMA_PROXY_URL": "https://reddit-mcp-vector-db.onrender.com",
"CHROMA_PROXY_API_KEY": "your_proxy_api_key_here"
}
}
}