Help us improve
Share bugs, ideas, or general feedback.
npx claudepluginhub harieshvarshan/vrshn-claude-marketplaceLocal document semantic search - index and search PDF, DOCX, XLSX, PPTX, ODT, TXT, MD, HTML, CSV and more using ChromaDB vector database and Ollama embeddings
MCP server for Klocwork project management - list projects, search issues, manage modules and permissions
MCP server for Bitbucket Server/Data Center - manage PRs, repos, branches, and permissions
MCP server for Confluence Data Center - manage pages, spaces, attachments, and search
MCP server for Jenkins CI/CD - manage jobs, builds, nodes, and artifacts
MCP server for Jira Data Center - manage issues, projects, sprints, and workflows
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
No description available.
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations
Share bugs, ideas, or general feedback.
A collection of MCP (Model Context Protocol) server plugins for Claude Code.
| Plugin | Description |
|---|---|
| atlassian-mcp | Jira, Confluence, and Bitbucket integration - search, read, create, and manage issues, pages, and pull requests |
| talk2docs | Local document semantic search using ChromaDB and Ollama embeddings |
Open or create ~/.claude/settings.json and add the marketplace configuration:
{
"marketplaces": [
{
"name": "Vrshn Marketplace",
"url": "https://bitbucket.itg.ti.com/projects/vrshn/repos/vrshn-claude-marketplace/raw/.claude-plugin/marketplace.json?at=refs/heads/master"
}
]
}
If you already have other settings in the file, just add the marketplaces array alongside them.
git clone ssh://git@bitbucket.itg.ti.com/vrshn/vrshn-claude-marketplace.git
cd vrshn-claude-marketplace
Choose which plugin to install and follow the setup instructions below.
This plugin provides tools for Jira, Confluence, and Bitbucket.
cd atlassian-mcp
python -m venv venv
source venv/bin/activate # Linux/Mac
# or: venv\Scripts\activate # Windows
pip install -r requirements.txt
Create the credentials file:
mkdir -p ~/.config/atlassian
chmod 700 ~/.config/atlassian
cat > ~/.config/atlassian/.env << 'EOF'
# Jira credentials
JIRA_URL=https://jira.your-company.com
JIRA_USERNAME=your_username
JIRA_TOKEN=your_personal_access_token
# Confluence credentials
CONFLUENCE_URL=https://confluence.your-company.com
CONFLUENCE_USERNAME=your_username
CONFLUENCE_TOKEN=your_personal_access_token
# Bitbucket credentials
BITBUCKET_URL=https://bitbucket.your-company.com
BITBUCKET_USERNAME=your_username
BITBUCKET_TOKEN=your_personal_access_token
EOF
chmod 600 ~/.config/atlassian/.env
Jira:
Confluence:
Bitbucket:
# Make sure you're in the atlassian-mcp directory with venv activated
claude mcp add --transport stdio --scope user atlassian \
--env ATLASSIAN_CONFIG=~/.config/atlassian/.env \
-- $(pwd)/venv/bin/python $(pwd)/mcp_server.py
Restart Claude Code and try:
This plugin provides semantic search across local documents.
# Install Ollama (Linux)
curl -fsSL https://ollama.com/install.sh | sh
# Pull the embedding model
ollama pull nomic-embed-text
# Start Ollama service
ollama serve
cd talk2docs
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
# Index a folder of documents
python index.py /path/to/your/documents
# Index specific files
python index.py file1.pdf file2.docx
# Force re-index existing documents
python index.py --force /path/to/documents
# Filter by extension
python index.py /path/to/documents --ext pdf docx
# Use parallel processing for faster indexing
python index.py /path/to/documents -p 4 -w 8
# Make sure you're in the talk2docs directory with venv activated
claude mcp add --transport stdio --scope user ldoc-search \
--env CHROMA_DB_PATH=$(pwd)/chroma_db \
--env OLLAMA_MODEL=nomic-embed-text \
-- $(pwd)/venv/bin/python $(pwd)/mcp_server.py
Restart Claude Code and try:
# List registered MCP servers
claude mcp list
# Remove an MCP server
claude mcp remove atlassian
claude mcp remove ldoc-search
# Check MCP server status
claude mcp status
Jira:
jira_get_issue - Get issue details by key or URLjira_search - Search issues using JQLjira_create_issue - Create new issuesjira_add_comment - Add comments to issuesjira_transition_issue - Change issue status