basecamp-mcp 1.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/README.md +155 -0
- package/dist/constants.d.ts +14 -0
- package/dist/constants.d.ts.map +1 -0
- package/dist/constants.js +14 -0
- package/dist/constants.js.map +1 -0
- package/dist/index.d.ts +20 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +71 -0
- package/dist/index.js.map +1 -0
- package/dist/schemas/common.d.ts +13 -0
- package/dist/schemas/common.d.ts.map +1 -0
- package/dist/schemas/common.js +19 -0
- package/dist/schemas/common.js.map +1 -0
- package/dist/tools/comments.d.ts +7 -0
- package/dist/tools/comments.d.ts.map +1 -0
- package/dist/tools/comments.js +179 -0
- package/dist/tools/comments.js.map +1 -0
- package/dist/tools/kanban.d.ts +6 -0
- package/dist/tools/kanban.d.ts.map +1 -0
- package/dist/tools/kanban.js +390 -0
- package/dist/tools/kanban.js.map +1 -0
- package/dist/tools/messages.d.ts +8 -0
- package/dist/tools/messages.d.ts.map +1 -0
- package/dist/tools/messages.js +300 -0
- package/dist/tools/messages.js.map +1 -0
- package/dist/tools/people.d.ts +6 -0
- package/dist/tools/people.d.ts.map +1 -0
- package/dist/tools/people.js +142 -0
- package/dist/tools/people.js.map +1 -0
- package/dist/tools/projects.d.ts +11 -0
- package/dist/tools/projects.d.ts.map +1 -0
- package/dist/tools/projects.js +116 -0
- package/dist/tools/projects.js.map +1 -0
- package/dist/tools/todos.d.ts +6 -0
- package/dist/tools/todos.d.ts.map +1 -0
- package/dist/tools/todos.js +223 -0
- package/dist/tools/todos.js.map +1 -0
- package/dist/types.d.ts +27 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +5 -0
- package/dist/types.js.map +1 -0
- package/dist/utils/auth.d.ts +24 -0
- package/dist/utils/auth.d.ts.map +1 -0
- package/dist/utils/auth.js +62 -0
- package/dist/utils/auth.js.map +1 -0
- package/dist/utils/contentOperations.d.ts +55 -0
- package/dist/utils/contentOperations.d.ts.map +1 -0
- package/dist/utils/contentOperations.js +109 -0
- package/dist/utils/contentOperations.js.map +1 -0
- package/dist/utils/errorHandlers.d.ts +11 -0
- package/dist/utils/errorHandlers.d.ts.map +1 -0
- package/dist/utils/errorHandlers.js +87 -0
- package/dist/utils/errorHandlers.js.map +1 -0
- package/dist/utils/serializers.d.ts +27 -0
- package/dist/utils/serializers.d.ts.map +1 -0
- package/dist/utils/serializers.js +19 -0
- package/dist/utils/serializers.js.map +1 -0
- package/package.json +65 -0
package/README.md
ADDED
|
@@ -0,0 +1,155 @@
|
|
|
1
|
+
# Basecamp MCP Server
|
|
2
|
+
|
|
3
|
+
Model Context Protocol (MCP) server for Basecamp integration. Enables LLMs to interact with Basecamp projects, messages, todos, comments, people, and kanban boards.
|
|
4
|
+
|
|
5
|
+
## Getting Started
|
|
6
|
+
|
|
7
|
+
The Basecamp MCP server requires Node.js 18+ and works with various MCP clients including Claude Code CLI, Claude Desktop, Cursor, VS Code, and others.
|
|
8
|
+
|
|
9
|
+
### Standard Configuration
|
|
10
|
+
|
|
11
|
+
The baseline setup applies across most tools:
|
|
12
|
+
|
|
13
|
+
```json
|
|
14
|
+
{
|
|
15
|
+
"mcpServers": {
|
|
16
|
+
"basecamp": {
|
|
17
|
+
"command": "npx",
|
|
18
|
+
"args": ["-y", "@basecamp/mcp@latest"],
|
|
19
|
+
"env": {
|
|
20
|
+
"BASECAMP_CLIENT_ID": "your_client_id",
|
|
21
|
+
"BASECAMP_CLIENT_SECRET": "your_client_secret",
|
|
22
|
+
"BASECAMP_REFRESH_TOKEN": "your_refresh_token",
|
|
23
|
+
"BASECAMP_USER_AGENT": "YourApp (your@email.com)",
|
|
24
|
+
"BASECAMP_ACCOUNT_ID": "account_id"
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
### Installation by Client
|
|
32
|
+
|
|
33
|
+
**Claude Code CLI:**
|
|
34
|
+
```bash
|
|
35
|
+
claude mcp add basecamp npx @basecamp/mcp@latest \
|
|
36
|
+
-e BASECAMP_CLIENT_ID=your_client_id \
|
|
37
|
+
-e BASECAMP_CLIENT_SECRET=your_client_secret \
|
|
38
|
+
-e BASECAMP_REFRESH_TOKEN=your_refresh_token \
|
|
39
|
+
-e BASECAMP_USER_AGENT="YourApp (your@email.com)" \
|
|
40
|
+
-e BASECAMP_ACCOUNT_ID=account_id
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
**Claude Desktop:** Follow the MCP install guide using the standard config above.
|
|
44
|
+
|
|
45
|
+
**Cursor:** One-click installation available, or manually add configuration through Settings → Tools & Integrations → New MCP Server.
|
|
46
|
+
|
|
47
|
+
**VS Code:** One-click installation provided, or use the CLI:
|
|
48
|
+
```bash
|
|
49
|
+
code --add-mcp '{"name":"basecamp","command":"npx","args":["-y", "@basecamp/mcp@latest"]}'
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
**Gemini CLI & Windsurf:** Refer to their respective documentation; use the standard config template.
|
|
53
|
+
|
|
54
|
+
## Configuration
|
|
55
|
+
|
|
56
|
+
The server requires the following environment variables:
|
|
57
|
+
|
|
58
|
+
* **`BASECAMP_CLIENT_ID`** — Your Basecamp OAuth client ID
|
|
59
|
+
* **`BASECAMP_CLIENT_SECRET`** — Your Basecamp OAuth client secret
|
|
60
|
+
* **`BASECAMP_REFRESH_TOKEN`** — Your Basecamp refresh token for authentication
|
|
61
|
+
* **`BASECAMP_USER_AGENT`** — Your application identifier (format: YourApp (our@email.com))
|
|
62
|
+
* **`BASECAMP_ACCOUNT_ID`** — Your Basecamp account ID
|
|
63
|
+
|
|
64
|
+
### Complete Configuration Example
|
|
65
|
+
|
|
66
|
+
```json
|
|
67
|
+
{
|
|
68
|
+
"mcpServers": {
|
|
69
|
+
"basecamp": {
|
|
70
|
+
"command": "npx",
|
|
71
|
+
"args": ["-y", "@basecamp/mcp@latest"],
|
|
72
|
+
"env": {
|
|
73
|
+
"BASECAMP_CLIENT_ID": "your_client_id",
|
|
74
|
+
"BASECAMP_CLIENT_SECRET": "your_client_secret",
|
|
75
|
+
"BASECAMP_REFRESH_TOKEN": "your_refresh_token",
|
|
76
|
+
"BASECAMP_USER_AGENT": "YourApp (your@email.com)",
|
|
77
|
+
"BASECAMP_ACCOUNT_ID": "account_id"
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
## Usage
|
|
85
|
+
|
|
86
|
+
### Running the Server
|
|
87
|
+
|
|
88
|
+
```bash
|
|
89
|
+
npm start
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
Or for development with auto-reload:
|
|
93
|
+
|
|
94
|
+
```bash
|
|
95
|
+
npm run dev
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
### Available Tools
|
|
99
|
+
|
|
100
|
+
#### Projects
|
|
101
|
+
- `basecamp_list_projects` - List all accessible projects with optional filtering
|
|
102
|
+
- `basecamp_get_project` - Get detailed project information including dock configuration
|
|
103
|
+
|
|
104
|
+
#### Messages
|
|
105
|
+
- `basecamp_list_messages` - List messages in a message board with optional filtering
|
|
106
|
+
- `basecamp_list_message_types` - List available message types/categories for a project
|
|
107
|
+
- `basecamp_get_message` - Get single message details
|
|
108
|
+
- `basecamp_create_message` - Create new message with optional category and draft status
|
|
109
|
+
- `basecamp_update_message` - Update message with advanced content editing (supports full replacement, append, prepend, search/replace)
|
|
110
|
+
|
|
111
|
+
#### TODOs
|
|
112
|
+
- `basecamp_get_todoset` - Get todo set container with all todo lists
|
|
113
|
+
- `basecamp_list_todos` - List todos in a list with status filtering (active/archived)
|
|
114
|
+
- `basecamp_create_todo` - Create new todo with optional description
|
|
115
|
+
- `basecamp_complete_todo` - Mark todo as complete
|
|
116
|
+
- `basecamp_uncomplete_todo` - Mark todo as incomplete
|
|
117
|
+
|
|
118
|
+
#### Comments
|
|
119
|
+
- `basecamp_list_comments` - List comments on any resource (works universally on all recording types)
|
|
120
|
+
- `basecamp_create_comment` - Add comment to any resource
|
|
121
|
+
- `basecamp_update_comment` - Update comment with advanced content editing (supports full replacement, append, prepend, search/replace)
|
|
122
|
+
|
|
123
|
+
#### People
|
|
124
|
+
- `basecamp_get_me` - Get personal information for the authenticated user
|
|
125
|
+
- `basecamp_list_people` - List all people with optional filtering by name, email, or title
|
|
126
|
+
- `basecamp_get_person` - Get person details
|
|
127
|
+
|
|
128
|
+
#### Kanban
|
|
129
|
+
- `basecamp_list_kanban_columns` - List all columns in a kanban board
|
|
130
|
+
- `basecamp_list_kanban_cards` - List cards in a column with steps and assignees
|
|
131
|
+
- `basecamp_get_kanban_card` - Get complete details of a specific card
|
|
132
|
+
- `basecamp_create_kanban_card` - Create new card with title and optional content
|
|
133
|
+
- `basecamp_update_kanban_card` - Update card with advanced content editing (supports full replacement, append, prepend, search/replace, plus title, due date, assignees, notifications)
|
|
134
|
+
- `basecamp_move_kanban_card` - Move a card to a different column and/or position
|
|
135
|
+
- `basecamp_create_kanban_step` - Add checklist step to a card
|
|
136
|
+
|
|
137
|
+
## Development
|
|
138
|
+
|
|
139
|
+
```bash
|
|
140
|
+
# Install dependencies
|
|
141
|
+
npm install
|
|
142
|
+
|
|
143
|
+
# Run type checking
|
|
144
|
+
npx tsc --noEmit
|
|
145
|
+
|
|
146
|
+
# Build
|
|
147
|
+
npm run build
|
|
148
|
+
|
|
149
|
+
# Clean build artifacts
|
|
150
|
+
npm run clean
|
|
151
|
+
```
|
|
152
|
+
|
|
153
|
+
## License
|
|
154
|
+
|
|
155
|
+
MIT
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Shared constants for the Basecamp MCP server
|
|
3
|
+
*/
|
|
4
|
+
/** Maximum response size in characters to prevent overwhelming LLM context */
|
|
5
|
+
export declare const CHARACTER_LIMIT = 25000;
|
|
6
|
+
/** Default number of items to return in paginated responses */
|
|
7
|
+
export declare const DEFAULT_LIMIT = 20;
|
|
8
|
+
/** Maximum number of items allowed in a single request */
|
|
9
|
+
export declare const MAX_LIMIT = 100;
|
|
10
|
+
/** Basecamp API base URL pattern */
|
|
11
|
+
export declare const BASECAMP_API_BASE = "https://3.basecampapi.com";
|
|
12
|
+
/** Basecamp web URL pattern for parsing */
|
|
13
|
+
export declare const BASECAMP_WEB_BASE = "https://3.basecamp.com";
|
|
14
|
+
//# sourceMappingURL=constants.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,8EAA8E;AAC9E,eAAO,MAAM,eAAe,QAAQ,CAAC;AAErC,+DAA+D;AAC/D,eAAO,MAAM,aAAa,KAAK,CAAC;AAEhC,0DAA0D;AAC1D,eAAO,MAAM,SAAS,MAAM,CAAC;AAE7B,oCAAoC;AACpC,eAAO,MAAM,iBAAiB,8BAA8B,CAAC;AAE7D,2CAA2C;AAC3C,eAAO,MAAM,iBAAiB,2BAA2B,CAAC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Shared constants for the Basecamp MCP server
|
|
3
|
+
*/
|
|
4
|
+
/** Maximum response size in characters to prevent overwhelming LLM context */
|
|
5
|
+
export const CHARACTER_LIMIT = 25000;
|
|
6
|
+
/** Default number of items to return in paginated responses */
|
|
7
|
+
export const DEFAULT_LIMIT = 20;
|
|
8
|
+
/** Maximum number of items allowed in a single request */
|
|
9
|
+
export const MAX_LIMIT = 100;
|
|
10
|
+
/** Basecamp API base URL pattern */
|
|
11
|
+
export const BASECAMP_API_BASE = "https://3.basecampapi.com";
|
|
12
|
+
/** Basecamp web URL pattern for parsing */
|
|
13
|
+
export const BASECAMP_WEB_BASE = "https://3.basecamp.com";
|
|
14
|
+
//# sourceMappingURL=constants.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"constants.js","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,8EAA8E;AAC9E,MAAM,CAAC,MAAM,eAAe,GAAG,KAAK,CAAC;AAErC,+DAA+D;AAC/D,MAAM,CAAC,MAAM,aAAa,GAAG,EAAE,CAAC;AAEhC,0DAA0D;AAC1D,MAAM,CAAC,MAAM,SAAS,GAAG,GAAG,CAAC;AAE7B,oCAAoC;AACpC,MAAM,CAAC,MAAM,iBAAiB,GAAG,2BAA2B,CAAC;AAE7D,2CAA2C;AAC3C,MAAM,CAAC,MAAM,iBAAiB,GAAG,wBAAwB,CAAC"}
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
/**
|
|
3
|
+
* Basecamp MCP Server
|
|
4
|
+
*
|
|
5
|
+
* MCP server for interacting with Basecamp API, providing tools for:
|
|
6
|
+
* - Projects (discovering bucket IDs)
|
|
7
|
+
* - Messages (with patch support for updates)
|
|
8
|
+
* - TODOs (sets, lists, todos)
|
|
9
|
+
* - Comments (universal - work on any resource)
|
|
10
|
+
* - People
|
|
11
|
+
* - Kanban (cards, columns, steps)
|
|
12
|
+
*
|
|
13
|
+
* Environment variables required:
|
|
14
|
+
* - BASECAMP_CLIENT_ID
|
|
15
|
+
* - BASECAMP_CLIENT_SECRET
|
|
16
|
+
* - BASECAMP_REFRESH_TOKEN
|
|
17
|
+
* - BASECAMP_USER_AGENT
|
|
18
|
+
*/
|
|
19
|
+
export {};
|
|
20
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AACA;;;;;;;;;;;;;;;;GAgBG"}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
/**
|
|
3
|
+
* Basecamp MCP Server
|
|
4
|
+
*
|
|
5
|
+
* MCP server for interacting with Basecamp API, providing tools for:
|
|
6
|
+
* - Projects (discovering bucket IDs)
|
|
7
|
+
* - Messages (with patch support for updates)
|
|
8
|
+
* - TODOs (sets, lists, todos)
|
|
9
|
+
* - Comments (universal - work on any resource)
|
|
10
|
+
* - People
|
|
11
|
+
* - Kanban (cards, columns, steps)
|
|
12
|
+
*
|
|
13
|
+
* Environment variables required:
|
|
14
|
+
* - BASECAMP_CLIENT_ID
|
|
15
|
+
* - BASECAMP_CLIENT_SECRET
|
|
16
|
+
* - BASECAMP_REFRESH_TOKEN
|
|
17
|
+
* - BASECAMP_USER_AGENT
|
|
18
|
+
*/
|
|
19
|
+
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
|
|
20
|
+
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
|
|
21
|
+
import { registerCommentTools } from "./tools/comments.js";
|
|
22
|
+
import { registerKanbanTools } from "./tools/kanban.js";
|
|
23
|
+
import { registerMessageTools } from "./tools/messages.js";
|
|
24
|
+
import { registerPeopleTools } from "./tools/people.js";
|
|
25
|
+
// Import tool registration functions
|
|
26
|
+
import { registerProjectTools } from "./tools/projects.js";
|
|
27
|
+
import { registerTodoTools } from "./tools/todos.js";
|
|
28
|
+
/**
|
|
29
|
+
* Main server initialization and startup
|
|
30
|
+
*/
|
|
31
|
+
async function main() {
|
|
32
|
+
// Validate required environment variables
|
|
33
|
+
const requiredEnvVars = [
|
|
34
|
+
"BASECAMP_CLIENT_ID",
|
|
35
|
+
"BASECAMP_CLIENT_SECRET",
|
|
36
|
+
"BASECAMP_REFRESH_TOKEN",
|
|
37
|
+
"BASECAMP_USER_AGENT",
|
|
38
|
+
];
|
|
39
|
+
const missing = requiredEnvVars.filter((varName) => !process.env[varName]);
|
|
40
|
+
if (missing.length > 0) {
|
|
41
|
+
console.error(`ERROR: Missing required environment variables: ${missing.join(", ")}`);
|
|
42
|
+
console.error("Please set these in your environment or .env file before starting the server.");
|
|
43
|
+
process.exit(1);
|
|
44
|
+
}
|
|
45
|
+
// Create MCP server instance
|
|
46
|
+
const server = new McpServer({
|
|
47
|
+
name: "basecamp-mcp-server",
|
|
48
|
+
version: "1.0.0",
|
|
49
|
+
});
|
|
50
|
+
// Register all tool categories
|
|
51
|
+
console.error("Registering tools...");
|
|
52
|
+
registerProjectTools(server);
|
|
53
|
+
registerMessageTools(server);
|
|
54
|
+
registerTodoTools(server);
|
|
55
|
+
registerCommentTools(server);
|
|
56
|
+
registerPeopleTools(server);
|
|
57
|
+
registerKanbanTools(server);
|
|
58
|
+
console.error("Tools registered successfully");
|
|
59
|
+
// Create stdio transport
|
|
60
|
+
const transport = new StdioServerTransport();
|
|
61
|
+
// Connect server to transport
|
|
62
|
+
await server.connect(transport);
|
|
63
|
+
console.error("Basecamp MCP server running on stdio");
|
|
64
|
+
console.error("Waiting for client connection...");
|
|
65
|
+
}
|
|
66
|
+
// Run the server
|
|
67
|
+
main().catch((error) => {
|
|
68
|
+
console.error("Fatal error starting Basecamp MCP server:", error);
|
|
69
|
+
process.exit(1);
|
|
70
|
+
});
|
|
71
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AACA;;;;;;;;;;;;;;;;GAgBG;AAEH,OAAO,EAAE,SAAS,EAAE,MAAM,yCAAyC,CAAC;AACpE,OAAO,EAAE,oBAAoB,EAAE,MAAM,2CAA2C,CAAC;AACjF,OAAO,EAAE,oBAAoB,EAAE,MAAM,qBAAqB,CAAC;AAC3D,OAAO,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAC;AACxD,OAAO,EAAE,oBAAoB,EAAE,MAAM,qBAAqB,CAAC;AAC3D,OAAO,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAC;AACxD,qCAAqC;AACrC,OAAO,EAAE,oBAAoB,EAAE,MAAM,qBAAqB,CAAC;AAC3D,OAAO,EAAE,iBAAiB,EAAE,MAAM,kBAAkB,CAAC;AAErD;;GAEG;AACH,KAAK,UAAU,IAAI;IACjB,0CAA0C;IAC1C,MAAM,eAAe,GAAG;QACtB,oBAAoB;QACpB,wBAAwB;QACxB,wBAAwB;QACxB,qBAAqB;KACtB,CAAC;IAEF,MAAM,OAAO,GAAG,eAAe,CAAC,MAAM,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC;IAC3E,IAAI,OAAO,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;QACvB,OAAO,CAAC,KAAK,CACX,kDAAkD,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE,CACvE,CAAC;QACF,OAAO,CAAC,KAAK,CACX,+EAA+E,CAChF,CAAC;QACF,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IAClB,CAAC;IAED,6BAA6B;IAC7B,MAAM,MAAM,GAAG,IAAI,SAAS,CAAC;QAC3B,IAAI,EAAE,qBAAqB;QAC3B,OAAO,EAAE,OAAO;KACjB,CAAC,CAAC;IAEH,+BAA+B;IAC/B,OAAO,CAAC,KAAK,CAAC,sBAAsB,CAAC,CAAC;IACtC,oBAAoB,CAAC,MAAM,CAAC,CAAC;IAC7B,oBAAoB,CAAC,MAAM,CAAC,CAAC;IAC7B,iBAAiB,CAAC,MAAM,CAAC,CAAC;IAC1B,oBAAoB,CAAC,MAAM,CAAC,CAAC;IAC7B,mBAAmB,CAAC,MAAM,CAAC,CAAC;IAC5B,mBAAmB,CAAC,MAAM,CAAC,CAAC;IAC5B,OAAO,CAAC,KAAK,CAAC,+BAA+B,CAAC,CAAC;IAE/C,yBAAyB;IACzB,MAAM,SAAS,GAAG,IAAI,oBAAoB,EAAE,CAAC;IAE7C,8BAA8B;IAC9B,MAAM,MAAM,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC;IAEhC,OAAO,CAAC,KAAK,CAAC,sCAAsC,CAAC,CAAC;IACtD,OAAO,CAAC,KAAK,CAAC,kCAAkC,CAAC,CAAC;AACpD,CAAC;AAED,iBAAiB;AACjB,IAAI,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,EAAE,EAAE;IACrB,OAAO,CAAC,KAAK,CAAC,2CAA2C,EAAE,KAAK,CAAC,CAAC;IAClE,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAClB,CAAC,CAAC,CAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Common Zod schemas used across multiple tools
|
|
3
|
+
*/
|
|
4
|
+
import { z } from "zod";
|
|
5
|
+
/**
|
|
6
|
+
* Basecamp ID parameter schema
|
|
7
|
+
*/
|
|
8
|
+
export declare const BasecampIdSchema: z.ZodNumber;
|
|
9
|
+
/**
|
|
10
|
+
* Basecamp URL schema
|
|
11
|
+
*/
|
|
12
|
+
export declare const BasecampUrlSchema: z.ZodString;
|
|
13
|
+
//# sourceMappingURL=common.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"common.d.ts","sourceRoot":"","sources":["../../src/schemas/common.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB;;GAEG;AACH,eAAO,MAAM,gBAAgB,aAEc,CAAC;AAE5C;;GAEG;AACH,eAAO,MAAM,iBAAiB,aAM3B,CAAC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Common Zod schemas used across multiple tools
|
|
3
|
+
*/
|
|
4
|
+
import { z } from "zod";
|
|
5
|
+
/**
|
|
6
|
+
* Basecamp ID parameter schema
|
|
7
|
+
*/
|
|
8
|
+
export const BasecampIdSchema = z
|
|
9
|
+
.number()
|
|
10
|
+
.describe("Basecamp resource identifier");
|
|
11
|
+
/**
|
|
12
|
+
* Basecamp URL schema
|
|
13
|
+
*/
|
|
14
|
+
export const BasecampUrlSchema = z
|
|
15
|
+
.string()
|
|
16
|
+
.url()
|
|
17
|
+
.startsWith("https://3.basecamp.com/", "Must be a valid Basecamp URL")
|
|
18
|
+
.describe("Basecamp resource URL (e.g., https://3.basecamp.com/{accountId}/buckets/{bucketId}/messages/{id})");
|
|
19
|
+
//# sourceMappingURL=common.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"common.js","sourceRoot":"","sources":["../../src/schemas/common.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB;;GAEG;AACH,MAAM,CAAC,MAAM,gBAAgB,GAAG,CAAC;KAC9B,MAAM,EAAE;KACR,QAAQ,CAAC,8BAA8B,CAAC,CAAC;AAE5C;;GAEG;AACH,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAAC;KAC/B,MAAM,EAAE;KACR,GAAG,EAAE;KACL,UAAU,CAAC,yBAAyB,EAAE,8BAA8B,CAAC;KACrE,QAAQ,CACP,mGAAmG,CACpG,CAAC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Comment tools for Basecamp MCP server
|
|
3
|
+
* Comments work on ANY recording (messages, todos, cards, etc.)
|
|
4
|
+
*/
|
|
5
|
+
import type { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
|
|
6
|
+
export declare function registerCommentTools(server: McpServer): void;
|
|
7
|
+
//# sourceMappingURL=comments.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"comments.d.ts","sourceRoot":"","sources":["../../src/tools/comments.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,yCAAyC,CAAC;AAczE,wBAAgB,oBAAoB,CAAC,MAAM,EAAE,SAAS,GAAG,IAAI,CA0M5D"}
|
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Comment tools for Basecamp MCP server
|
|
3
|
+
* Comments work on ANY recording (messages, todos, cards, etc.)
|
|
4
|
+
*/
|
|
5
|
+
import { asyncPagedToArray } from "basecamp-client";
|
|
6
|
+
import { z } from "zod";
|
|
7
|
+
import { BasecampIdSchema } from "../schemas/common.js";
|
|
8
|
+
import { initializeBasecampClient } from "../utils/auth.js";
|
|
9
|
+
import { applyContentOperations, ContentOperationFields, htmlRules, validateContentOperations, } from "../utils/contentOperations.js";
|
|
10
|
+
import { handleBasecampError } from "../utils/errorHandlers.js";
|
|
11
|
+
import { serializePerson } from "../utils/serializers.js";
|
|
12
|
+
export function registerCommentTools(server) {
|
|
13
|
+
server.registerTool("basecamp_list_comments", {
|
|
14
|
+
title: "List Basecamp Comments",
|
|
15
|
+
description: "List comments on any Basecamp resource (message, todo, card, etc.). Works universally on all recording types.",
|
|
16
|
+
inputSchema: {
|
|
17
|
+
bucket_id: BasecampIdSchema,
|
|
18
|
+
recording_id: BasecampIdSchema.describe("ID of the resource (message, todo, card, etc.)"),
|
|
19
|
+
},
|
|
20
|
+
annotations: {
|
|
21
|
+
readOnlyHint: true,
|
|
22
|
+
destructiveHint: false,
|
|
23
|
+
idempotentHint: true,
|
|
24
|
+
openWorldHint: true,
|
|
25
|
+
},
|
|
26
|
+
}, async (params) => {
|
|
27
|
+
try {
|
|
28
|
+
const client = await initializeBasecampClient();
|
|
29
|
+
const comments = await asyncPagedToArray({
|
|
30
|
+
fetchPage: client.comments.list,
|
|
31
|
+
request: {
|
|
32
|
+
params: {
|
|
33
|
+
bucketId: params.bucket_id,
|
|
34
|
+
recordingId: params.recording_id,
|
|
35
|
+
},
|
|
36
|
+
query: {},
|
|
37
|
+
},
|
|
38
|
+
});
|
|
39
|
+
return {
|
|
40
|
+
content: [
|
|
41
|
+
{
|
|
42
|
+
type: "text",
|
|
43
|
+
text: JSON.stringify(comments.map((c) => ({
|
|
44
|
+
id: c.id,
|
|
45
|
+
creator: serializePerson(c.creator),
|
|
46
|
+
content: c.content,
|
|
47
|
+
created_at: c.created_at,
|
|
48
|
+
})), null, 2),
|
|
49
|
+
},
|
|
50
|
+
],
|
|
51
|
+
};
|
|
52
|
+
}
|
|
53
|
+
catch (error) {
|
|
54
|
+
return {
|
|
55
|
+
content: [{ type: "text", text: handleBasecampError(error) }],
|
|
56
|
+
};
|
|
57
|
+
}
|
|
58
|
+
});
|
|
59
|
+
server.registerTool("basecamp_create_comment", {
|
|
60
|
+
title: "Create Basecamp Comment",
|
|
61
|
+
description: "Add a comment to any Basecamp resource (message, todo, card, etc.).",
|
|
62
|
+
inputSchema: {
|
|
63
|
+
bucket_id: BasecampIdSchema,
|
|
64
|
+
recording_id: BasecampIdSchema,
|
|
65
|
+
content: z
|
|
66
|
+
.string()
|
|
67
|
+
.min(1)
|
|
68
|
+
.describe(`HTML comment content. To mention people: <bc-attachment sgid="{ person.attachable_sgid }"></bc-attachment>`),
|
|
69
|
+
},
|
|
70
|
+
annotations: {
|
|
71
|
+
readOnlyHint: false,
|
|
72
|
+
destructiveHint: false,
|
|
73
|
+
idempotentHint: false,
|
|
74
|
+
openWorldHint: true,
|
|
75
|
+
},
|
|
76
|
+
}, async (params) => {
|
|
77
|
+
try {
|
|
78
|
+
const client = await initializeBasecampClient();
|
|
79
|
+
const response = await client.comments.create({
|
|
80
|
+
params: {
|
|
81
|
+
bucketId: params.bucket_id,
|
|
82
|
+
recordingId: params.recording_id,
|
|
83
|
+
},
|
|
84
|
+
body: { content: params.content },
|
|
85
|
+
});
|
|
86
|
+
if (response.status !== 201 || !response.body) {
|
|
87
|
+
throw new Error("Failed to create comment");
|
|
88
|
+
}
|
|
89
|
+
return {
|
|
90
|
+
content: [
|
|
91
|
+
{
|
|
92
|
+
type: "text",
|
|
93
|
+
text: `Comment posted!\n\nID: ${response.body.id}`,
|
|
94
|
+
},
|
|
95
|
+
],
|
|
96
|
+
};
|
|
97
|
+
}
|
|
98
|
+
catch (error) {
|
|
99
|
+
return {
|
|
100
|
+
content: [{ type: "text", text: handleBasecampError(error) }],
|
|
101
|
+
};
|
|
102
|
+
}
|
|
103
|
+
});
|
|
104
|
+
server.registerTool("basecamp_update_comment", {
|
|
105
|
+
title: "Update Basecamp Comment",
|
|
106
|
+
description: `Update a comment. Use partial content operations when possible to save on token usage. ${htmlRules}`,
|
|
107
|
+
inputSchema: {
|
|
108
|
+
bucket_id: BasecampIdSchema,
|
|
109
|
+
comment_id: BasecampIdSchema,
|
|
110
|
+
...ContentOperationFields,
|
|
111
|
+
},
|
|
112
|
+
annotations: {
|
|
113
|
+
readOnlyHint: false,
|
|
114
|
+
destructiveHint: false,
|
|
115
|
+
idempotentHint: false,
|
|
116
|
+
openWorldHint: true,
|
|
117
|
+
},
|
|
118
|
+
}, async (params) => {
|
|
119
|
+
try {
|
|
120
|
+
// Validate at least one operation is provided
|
|
121
|
+
validateContentOperations(params);
|
|
122
|
+
const client = await initializeBasecampClient();
|
|
123
|
+
let finalContent;
|
|
124
|
+
// Check if we need to fetch current content for partial operations
|
|
125
|
+
const hasPartialOps = params.content_append ||
|
|
126
|
+
params.content_prepend ||
|
|
127
|
+
params.search_replace;
|
|
128
|
+
if (hasPartialOps || params.content !== undefined) {
|
|
129
|
+
// Fetch current comment if needed for partial operations
|
|
130
|
+
if (hasPartialOps) {
|
|
131
|
+
const currentResponse = await client.comments.get({
|
|
132
|
+
params: {
|
|
133
|
+
bucketId: params.bucket_id,
|
|
134
|
+
commentId: params.comment_id,
|
|
135
|
+
},
|
|
136
|
+
});
|
|
137
|
+
if (currentResponse.status !== 200 || !currentResponse.body) {
|
|
138
|
+
throw new Error(`Failed to fetch current comment: ${currentResponse.status}`);
|
|
139
|
+
}
|
|
140
|
+
const currentContent = currentResponse.body.content || "";
|
|
141
|
+
finalContent = applyContentOperations(currentContent, params);
|
|
142
|
+
}
|
|
143
|
+
else {
|
|
144
|
+
// Full content replacement
|
|
145
|
+
finalContent = params.content;
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
// If no content changes (shouldn't happen due to validation, but be safe)
|
|
149
|
+
if (finalContent === undefined) {
|
|
150
|
+
throw new Error("No content operations resulted in changes");
|
|
151
|
+
}
|
|
152
|
+
// Update the comment
|
|
153
|
+
const response = await client.comments.update({
|
|
154
|
+
params: {
|
|
155
|
+
bucketId: params.bucket_id,
|
|
156
|
+
commentId: params.comment_id,
|
|
157
|
+
},
|
|
158
|
+
body: { content: finalContent },
|
|
159
|
+
});
|
|
160
|
+
if (response.status !== 200 || !response.body) {
|
|
161
|
+
throw new Error("Failed to update comment");
|
|
162
|
+
}
|
|
163
|
+
return {
|
|
164
|
+
content: [
|
|
165
|
+
{
|
|
166
|
+
type: "text",
|
|
167
|
+
text: `Comment updated successfully!\n\nID: ${response.body.id}`,
|
|
168
|
+
},
|
|
169
|
+
],
|
|
170
|
+
};
|
|
171
|
+
}
|
|
172
|
+
catch (error) {
|
|
173
|
+
return {
|
|
174
|
+
content: [{ type: "text", text: handleBasecampError(error) }],
|
|
175
|
+
};
|
|
176
|
+
}
|
|
177
|
+
});
|
|
178
|
+
}
|
|
179
|
+
//# sourceMappingURL=comments.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"comments.js","sourceRoot":"","sources":["../../src/tools/comments.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"kanban.d.ts","sourceRoot":"","sources":["../../src/tools/kanban.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,yCAAyC,CAAC;AAczE,wBAAgB,mBAAmB,CAAC,MAAM,EAAE,SAAS,GAAG,IAAI,CA2b3D"}
|