loomiomcp 0.0.1

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.
package/package.json ADDED
@@ -0,0 +1,65 @@
1
+ {
2
+ "name": "loomiomcp",
3
+ "version": "0.0.1",
4
+ "description": "Model Context Protocol server for Loomio. Lets Claude (Desktop, Code, or web Projects via Custom Connector) read and create Loomio discussions, polls, and group memberships in plain English.",
5
+ "keywords": [
6
+ "mcp",
7
+ "model-context-protocol",
8
+ "loomio",
9
+ "claude",
10
+ "claude-desktop",
11
+ "anthropic",
12
+ "ai-tools",
13
+ "agent"
14
+ ],
15
+ "license": "Apache-2.0",
16
+ "author": "Anton Arapov",
17
+ "homepage": "https://github.com/soil-dev/loomiomcp#readme",
18
+ "bugs": {
19
+ "url": "https://github.com/soil-dev/loomiomcp/issues"
20
+ },
21
+ "type": "module",
22
+ "bin": {
23
+ "loomiomcp": "dist/index.js"
24
+ },
25
+ "main": "./dist/index.js",
26
+ "files": [
27
+ "dist"
28
+ ],
29
+ "scripts": {
30
+ "build:icon": "node scripts/build-icon.mjs",
31
+ "build": "npm run build:icon && tsup",
32
+ "dev": "tsup --watch",
33
+ "start": "node dist/index.js",
34
+ "test": "vitest run",
35
+ "test:watch": "vitest",
36
+ "typecheck": "tsc --noEmit",
37
+ "lint": "biome lint src tests scripts",
38
+ "format": "biome format --write src tests scripts",
39
+ "format:check": "biome format src tests scripts",
40
+ "check": "biome check src tests scripts",
41
+ "prepare": "npm run build:icon && tsup"
42
+ },
43
+ "repository": {
44
+ "type": "git",
45
+ "url": "git+https://github.com/soil-dev/loomiomcp.git"
46
+ },
47
+ "dependencies": {
48
+ "@modelcontextprotocol/sdk": "^1.29.0",
49
+ "express": "^5.2.1",
50
+ "express-rate-limit": "^8.5.2",
51
+ "undici": "^8.3.0",
52
+ "zod": "^4.4.3"
53
+ },
54
+ "devDependencies": {
55
+ "@biomejs/biome": "2.4.15",
56
+ "@types/express": "^5.0.6",
57
+ "@types/node": "^25.9.1",
58
+ "tsup": "^8.3.0",
59
+ "typescript": "^6.0.3",
60
+ "vitest": "^4.1.7"
61
+ },
62
+ "engines": {
63
+ "node": ">=22"
64
+ }
65
+ }