@jullury/shoanta-mcp 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +102 -0
  3. package/dist/index.mjs +35701 -0
  4. package/package.json +49 -0
package/package.json ADDED
@@ -0,0 +1,49 @@
1
+ {
2
+ "name": "@jullury/shoanta-mcp",
3
+ "version": "0.1.0",
4
+ "description": "MCP server that lets AI agents read/update Shoanta tickets via the Shoanta REST API",
5
+ "type": "module",
6
+ "main": "dist/index.mjs",
7
+ "exports": {
8
+ ".": "./dist/index.mjs"
9
+ },
10
+ "bin": {
11
+ "shoanta-mcp": "dist/index.mjs"
12
+ },
13
+ "files": [
14
+ "dist",
15
+ "README.md"
16
+ ],
17
+ "scripts": {
18
+ "build": "esbuild src/index.ts --bundle --platform=node --format=esm --target=node20 --outfile=dist/index.mjs",
19
+ "start": "node dist/index.mjs",
20
+ "prepublishOnly": "pnpm build"
21
+ },
22
+ "keywords": [
23
+ "mcp",
24
+ "model-context-protocol",
25
+ "shoanta",
26
+ "tickets",
27
+ "ai",
28
+ "agent"
29
+ ],
30
+ "license": "MIT",
31
+ "repository": {
32
+ "type": "git",
33
+ "url": "git+https://github.com/jullury/shoanta-mcp.git"
34
+ },
35
+ "publishConfig": {
36
+ "access": "public"
37
+ },
38
+ "engines": {
39
+ "node": ">=20"
40
+ },
41
+ "dependencies": {
42
+ "@modelcontextprotocol/sdk": "^1.30.0"
43
+ },
44
+ "devDependencies": {
45
+ "@types/node": "^20",
46
+ "esbuild": "^0.28.2",
47
+ "typescript": "^5"
48
+ }
49
+ }