Personal Claude Code plugins marketplace
npx claudepluginhub yteruel31/claude-marketplaceMCP server for web research using Google Gemini Flash with Google Search grounding. Use for real-time web research, current events, fact-checking, and topic analysis with citations.
MCP server for AI image generation using Google Gemini. Generate images from text prompts, saved to disk for inline display in Claude Code.
MCP server for Discord bot integration and API documentation. Send messages, read channels, list servers, and fetch Discord API docs.
MCP server for Reddit research. Search posts, read discussions, browse subreddits, and run multi-query research with consolidated reports.
MCP server for React Flow documentation. Browse, search, and retrieve @xyflow/react docs for building node-based UIs, flow editors, and interactive diagrams.
MCP server for querying the JetBrains Marketplace API. Search plugins, check compatibility, view metadata, and browse version history.
Generate optimized, paste-ready prompts for Claude.ai, Claude Code, Gemini, Google Stitch, and Perplexity. Applies provider-specific techniques, detects anti-patterns, and routes to the right framework automatically.
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations
No description available.
A comprehensive community-driven collection of 117 AI agents, 174 slash commands, 28 hooks, and 199 MCP servers for Claude Code
Share bugs, ideas, or general feedback.
Personal Claude Code plugins marketplace.
/plugin marketplace add https://github.com/yteruel31/claude-marketplace.git
/plugin
/plugin install google-research@claude-marketplace
| Plugin | Version | Tools | Description |
|---|---|---|---|
google-research | 1.0.0 | 1 | Web research with Google Gemini Flash + Search grounding |
google-image | 1.0.0 | 1 | AI image generation with Google Gemini |
discord | 1.1.1 | 10 | Discord bot integration and API documentation access |
reddit | 1.0.0 | 7 | Read-only Reddit research tools |
jb-marketplace | 1.0.0 | 4 | JetBrains Marketplace API (search, compatibility, metadata, versions) |
MCP server for web research using Google Gemini Flash with Google Search grounding.
Features:
Requirements:
GEMINI_API_KEY environment variable (get one at https://aistudio.google.com/apikey)uv package manager (https://github.com/astral-sh/uv)MCP server for AI image generation using Google Gemini.
Features:
Requirements:
GEMINI_API_KEY environment variable (get one at https://aistudio.google.com/apikey)uv package manager (https://github.com/astral-sh/uv)MCP server for Discord bot integration and API documentation access.
Features:
Requirements:
DISCORD_BOT_TOKEN environment variable (from Discord Developer Portal)uv package manager (https://github.com/astral-sh/uv)MCP server providing read-only Reddit research tools.
Features:
get_insight)Requirements:
REDDIT_CLIENT_ID and REDDIT_CLIENT_SECRET environment variables (from Reddit App Preferences)uv package manager (https://github.com/astral-sh/uv)MCP server for the JetBrains Marketplace API.
Features:
Requirements:
uv package manager (https://github.com/astral-sh/uv)claude-marketplace/
├── .claude/
│ └── settings.json
├── .claude-plugin/
│ └── marketplace.json
├── plugins/
│ ├── general/
│ │ ├── discord/
│ │ ├── google-image/
│ │ ├── google-research/
│ │ └── reddit/
│ └── development/
│ └── jb-marketplace/
├── LICENSE
└── README.md
Add to your project's .claude/settings.json for automatic installation:
{
"extraKnownMarketplaces": {
"claude-marketplace": {
"source": {
"source": "github",
"repo": "yteruel31/claude-marketplace"
}
}
},
"enabledPlugins": {
"google-research@claude-marketplace": true,
"google-image@claude-marketplace": true,
"discord@claude-marketplace": true,
"reddit@claude-marketplace": true,
"jb-marketplace@claude-marketplace": true
}
}
MIT