Skip to content

Commit 4cbf4de

Browse files
committed
Add marketplace plugin structure and bump to 0.3.0-beta.7
- Add plugin/ subdirectory with .claude-plugin/plugin.json, .mcp.json, and symlinks to skills/ and CLAUDE.md for marketplace installation - Update marketplace.json to point source to ./plugin - Clear root .mcp.json (MCP config lives in plugin/.mcp.json) - Bump version to 0.3.0-beta.7 across all manifests
1 parent 77b3684 commit 4cbf4de

11 files changed

Lines changed: 47 additions & 13 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,15 @@
33
"owner": {
44
"name": "Dr. Alex M. Mawla, PhD"
55
},
6+
"metadata": {
7+
"description": "ENCODE Project genomics research infrastructure for Claude Code",
8+
"homepage": "https://github.com/ammawla/encode-toolkit"
9+
},
610
"plugins": [
711
{
812
"name": "encode-toolkit",
9-
"source": ".",
13+
"version": "0.3.0",
14+
"source": "./plugin",
1015
"description": "20 ENCODE API tools + 48 expert skills for genomics research. Search experiments, download files with MD5 verification, run pipelines, and cross-reference 14 databases."
1116
}
1217
]

.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "encode-toolkit",
33
"description": "20 ENCODE API tools + 48 expert skills for genomics research. Search experiments, download files with MD5 verification, run pipelines, and cross-reference 14 databases.",
4-
"version": "0.3.0-beta.6",
4+
"version": "0.3.0-beta.7",
55
"author": {
66
"name": "Dr. Alex M. Mawla, PhD",
77
"email": "ammawla@ucdavis.edu"

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,3 +66,4 @@ package-lock.json
6666
# OS
6767
.DS_Store
6868
Thumbs.db
69+
buildwithclaude/

.mcp.json

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
11
{
2-
"mcpServers": {
3-
"encode": {
4-
"command": "encode-toolkit",
5-
"args": []
6-
}
7-
}
2+
"mcpServers": {}
83
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "encode-toolkit",
3-
"version": "0.3.0-beta.6",
3+
"version": "0.3.0-beta.7",
44
"mcpName": "io.github.ammawla/encode-toolkit",
55
"description": "ENCODE Toolkit — Genomics research infrastructure with 20 MCP tools, 47 skills, 14 database integrations, and 7 pipelines for Claude Code",
66
"main": "index.js",

plugin/.claude-plugin/plugin.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "encode-toolkit",
3+
"version": "0.3.0",
4+
"description": "20 ENCODE API tools + 48 expert skills for genomics research. Search experiments, download files with MD5 verification, run pipelines, and cross-reference 14 databases.",
5+
"author": {
6+
"name": "Dr. Alex M. Mawla, PhD",
7+
"url": "https://github.com/ammawla/encode-toolkit"
8+
},
9+
"repository": "https://github.com/ammawla/encode-toolkit",
10+
"license": "CC-BY-NC-ND-4.0",
11+
"keywords": [
12+
"genomics",
13+
"encode",
14+
"bioinformatics",
15+
"epigenomics",
16+
"chip-seq",
17+
"atac-seq",
18+
"rna-seq",
19+
"pipelines",
20+
"science"
21+
]
22+
}

plugin/.mcp.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"mcpServers": {
3+
"encode-toolkit": {
4+
"type": "stdio",
5+
"command": "npx",
6+
"args": ["-y", "encode-toolkit@latest"]
7+
}
8+
}
9+
}

plugin/CLAUDE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../CLAUDE.md

plugin/skills

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../skills

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "encode-toolkit"
7-
version = "0.3.0b6"
7+
version = "0.3.0b7"
88
description = "MCP server for querying and downloading ENCODE Project genomics data directly from Claude"
99
readme = "README.md"
1010
license = "CC-BY-NC-ND-4.0"

0 commit comments

Comments
 (0)