mcp-sunsama 0.12.1 → 0.14.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.
- package/CHANGELOG.md +51 -0
- package/CLAUDE.md +58 -12
- package/CONTRIBUTING.md +229 -0
- package/README.md +44 -5
- package/bun.lock +18 -24
- package/dist/main.js +7 -932
- package/dist/resources/index.d.ts +10 -0
- package/dist/resources/index.d.ts.map +1 -0
- package/dist/resources/index.js +163 -0
- package/dist/schemas.d.ts +1 -0
- package/dist/schemas.d.ts.map +1 -1
- package/dist/tools/index.d.ts +112 -0
- package/dist/tools/index.d.ts.map +1 -0
- package/dist/tools/index.js +12 -0
- package/dist/tools/shared.d.ts +46 -0
- package/dist/tools/shared.d.ts.map +1 -0
- package/dist/tools/shared.js +73 -0
- package/dist/tools/stream-tools.d.ts +14 -0
- package/dist/tools/stream-tools.d.ts.map +1 -0
- package/dist/tools/stream-tools.js +15 -0
- package/dist/tools/task-tools.d.ts +250 -0
- package/dist/tools/task-tools.d.ts.map +1 -0
- package/dist/tools/task-tools.js +421 -0
- package/dist/tools/user-tools.d.ts +14 -0
- package/dist/tools/user-tools.d.ts.map +1 -0
- package/dist/tools/user-tools.js +15 -0
- package/package.json +3 -3
- package/src/main.ts +7 -1107
- package/src/resources/index.ts +163 -0
- package/src/schemas.ts +1 -0
- package/src/tools/index.ts +14 -0
- package/src/tools/shared.ts +104 -0
- package/src/tools/stream-tools.ts +20 -0
- package/src/tools/task-tools.ts +531 -0
- package/src/tools/user-tools.ts +20 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,56 @@
|
|
|
1
1
|
# mcp-sunsama
|
|
2
2
|
|
|
3
|
+
## 0.14.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- Upgrade FastMCP dependency from 3.3.1 to 3.18.0
|
|
8
|
+
|
|
9
|
+
- Updated FastMCP to latest version for improved MCP protocol support and performance
|
|
10
|
+
- Added comprehensive CONTRIBUTING.md documentation with release process
|
|
11
|
+
- Improved README documentation structure
|
|
12
|
+
- All existing functionality remains compatible
|
|
13
|
+
|
|
14
|
+
## 0.13.0
|
|
15
|
+
|
|
16
|
+
### Minor Changes
|
|
17
|
+
|
|
18
|
+
- a39494b: Refactor to modular architecture with improved type safety
|
|
19
|
+
|
|
20
|
+
- **BREAKING**: Refactored codebase into modular, resource-based architecture
|
|
21
|
+
- **Major code organization improvements**:
|
|
22
|
+
|
|
23
|
+
- Extracted tools into separate files by resource type (user, task, stream)
|
|
24
|
+
- Reduced main.ts complexity by 96% (1162 → 47 lines)
|
|
25
|
+
- Created shared utilities for common patterns
|
|
26
|
+
- Moved API documentation to dedicated resources file
|
|
27
|
+
|
|
28
|
+
- **Complete type safety overhaul**:
|
|
29
|
+
|
|
30
|
+
- Eliminated all `any` types from function parameters
|
|
31
|
+
- Added proper TypeScript typing with Zod schema inference
|
|
32
|
+
- Implemented parameter destructuring for cleaner function signatures
|
|
33
|
+
- Added missing type exports to schemas
|
|
34
|
+
|
|
35
|
+
- **Enhanced developer experience**:
|
|
36
|
+
|
|
37
|
+
- Standardized error handling and logging across all tools
|
|
38
|
+
- Consistent response formatting with shared utilities
|
|
39
|
+
- Better code maintainability and testability
|
|
40
|
+
- Clear separation of concerns
|
|
41
|
+
|
|
42
|
+
- **New modular structure**:
|
|
43
|
+
```
|
|
44
|
+
src/tools/
|
|
45
|
+
├── shared.ts # Common utilities and patterns
|
|
46
|
+
├── user-tools.ts # User operations
|
|
47
|
+
├── task-tools.ts # Task operations (14 tools)
|
|
48
|
+
├── stream-tools.ts # Stream operations
|
|
49
|
+
└── index.ts # Export all tools
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
This refactoring maintains 100% API compatibility while significantly improving code quality, type safety, and maintainability.
|
|
53
|
+
|
|
3
54
|
## 0.12.1
|
|
4
55
|
|
|
5
56
|
### Patch Changes
|
package/CLAUDE.md
CHANGED
|
@@ -72,18 +72,31 @@ All tools use Zod schemas from `schemas.ts`:
|
|
|
72
72
|
## Key Patterns
|
|
73
73
|
|
|
74
74
|
### Tool Structure
|
|
75
|
-
|
|
75
|
+
Modern tool pattern using shared utilities and parameter destructuring:
|
|
76
76
|
```typescript
|
|
77
|
+
// Old pattern (before refactoring)
|
|
77
78
|
server.addTool({
|
|
78
79
|
name: "tool-name",
|
|
79
80
|
description: "...",
|
|
80
81
|
parameters: toolSchema,
|
|
81
82
|
execute: async (args, {session, log}) => {
|
|
82
|
-
|
|
83
|
-
//
|
|
83
|
+
const { param1, param2 } = args;
|
|
84
|
+
// Manual error handling, client resolution, etc.
|
|
85
|
+
}
|
|
86
|
+
});
|
|
87
|
+
|
|
88
|
+
// New pattern (current)
|
|
89
|
+
export const toolName = createToolWrapper({
|
|
90
|
+
name: "tool-name",
|
|
91
|
+
description: "...",
|
|
92
|
+
parameters: toolSchema,
|
|
93
|
+
execute: async ({ param1, param2 }: ToolInput, context: ToolContext) => {
|
|
94
|
+
// 1. Parameters automatically destructured and typed
|
|
95
|
+
// 2. Get client via getClient(context.session)
|
|
84
96
|
// 3. Call sunsama-api methods
|
|
85
97
|
// 4. Apply filtering/trimming if needed
|
|
86
|
-
// 5. Return formatted response
|
|
98
|
+
// 5. Return formatted response using formatters
|
|
99
|
+
// Error handling and logging handled by wrapper
|
|
87
100
|
}
|
|
88
101
|
});
|
|
89
102
|
```
|
|
@@ -106,17 +119,50 @@ server.addTool({
|
|
|
106
119
|
|
|
107
120
|
## Code Organization
|
|
108
121
|
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
122
|
+
### Refactored Modular Architecture (2024)
|
|
123
|
+
|
|
124
|
+
The codebase has been refactored into a modular, resource-based architecture:
|
|
125
|
+
|
|
126
|
+
```
|
|
127
|
+
src/
|
|
128
|
+
├── tools/
|
|
129
|
+
│ ├── shared.ts # Common utilities and tool wrapper patterns
|
|
130
|
+
│ ├── user-tools.ts # User operations (get-user)
|
|
131
|
+
│ ├── task-tools.ts # Task operations (14 tools)
|
|
132
|
+
│ ├── stream-tools.ts # Stream operations (get-streams)
|
|
133
|
+
│ └── index.ts # Export all tools
|
|
134
|
+
├── resources/
|
|
135
|
+
│ └── index.ts # API documentation resource
|
|
136
|
+
├── auth/ # Authentication strategies per transport type
|
|
137
|
+
├── config/ # Environment configuration and validation
|
|
138
|
+
├── utils/ # Reusable utilities (client resolution, filtering, formatting)
|
|
139
|
+
├── schemas.ts # Zod validation schemas for all tools
|
|
140
|
+
├── schemas.test.ts # Comprehensive test suite for all Zod schemas
|
|
141
|
+
└── main.ts # Streamlined server setup (47 lines vs 1162 before)
|
|
142
|
+
```
|
|
143
|
+
|
|
144
|
+
### Tool Architecture Improvements
|
|
145
|
+
|
|
146
|
+
**Shared Utilities** (`tools/shared.ts`):
|
|
147
|
+
- `createToolWrapper()`: Standardized error handling and logging wrapper
|
|
148
|
+
- `getClient()`: Session-aware client resolution
|
|
149
|
+
- `formatJsonResponse()`, `formatTsvResponse()`: Consistent response formatting
|
|
150
|
+
- `formatPaginatedTsvResponse()`: Specialized pagination support
|
|
151
|
+
|
|
152
|
+
**Resource-Based Organization**:
|
|
153
|
+
- **User Tools**: Single tool for user operations
|
|
154
|
+
- **Task Tools**: 14 tools organized by function (query, lifecycle, update)
|
|
155
|
+
- **Stream Tools**: Single tool for stream operations
|
|
156
|
+
|
|
157
|
+
**Type Safety Improvements**:
|
|
158
|
+
- **Parameter Destructuring**: Function signatures directly destructure typed parameters
|
|
159
|
+
- **Zod Schema Integration**: Full TypeScript inference from Zod schemas
|
|
160
|
+
- **Eliminated `any` Types**: All parameters properly typed with generated types
|
|
115
161
|
|
|
116
162
|
## Important Notes
|
|
117
163
|
|
|
118
164
|
### Version Synchronization
|
|
119
|
-
Always keep FastMCP server version in `src/main.ts` (line
|
|
165
|
+
Always keep FastMCP server version in `src/main.ts` (line 19) synchronized with `package.json` version.
|
|
120
166
|
|
|
121
167
|
### Environment Variables
|
|
122
168
|
Required for stdio transport:
|
|
@@ -144,7 +190,7 @@ Configure different server variants in `mcp-inspector.json` for testing various
|
|
|
144
190
|
|
|
145
191
|
When updating the version:
|
|
146
192
|
1. Update `package.json` version (done automatically by changesets)
|
|
147
|
-
2. Manually update the FastMCP server version in `src/main.ts`
|
|
193
|
+
2. Manually update the FastMCP server version in `src/main.ts` (line 19)
|
|
148
194
|
3. Both versions must be identical for consistency
|
|
149
195
|
|
|
150
196
|
## Git Rules
|
package/CONTRIBUTING.md
ADDED
|
@@ -0,0 +1,229 @@
|
|
|
1
|
+
# Contributing to mcp-sunsama
|
|
2
|
+
|
|
3
|
+
Thank you for your interest in contributing to the Sunsama MCP Server! This document provides guidelines and instructions for contributing to the project.
|
|
4
|
+
|
|
5
|
+
## Getting Started
|
|
6
|
+
|
|
7
|
+
1. Fork the repository on GitHub
|
|
8
|
+
2. Clone your fork locally:
|
|
9
|
+
```bash
|
|
10
|
+
git clone https://github.com/your-username/mcp-sunsama.git
|
|
11
|
+
cd mcp-sunsama
|
|
12
|
+
```
|
|
13
|
+
3. Install dependencies:
|
|
14
|
+
```bash
|
|
15
|
+
bun install
|
|
16
|
+
```
|
|
17
|
+
4. Set up your environment:
|
|
18
|
+
```bash
|
|
19
|
+
cp .env.example .env
|
|
20
|
+
# Edit .env with your Sunsama credentials for testing
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Development Workflow
|
|
24
|
+
|
|
25
|
+
### Branch Naming Convention
|
|
26
|
+
|
|
27
|
+
Use the format `{type}/{short-name}` where `{type}` follows conventional commit naming:
|
|
28
|
+
- `feat/` - New features
|
|
29
|
+
- `fix/` - Bug fixes
|
|
30
|
+
- `chore/` - Maintenance tasks
|
|
31
|
+
- `refactor/` - Code refactoring
|
|
32
|
+
- `docs/` - Documentation updates
|
|
33
|
+
- `test/` - Test additions or fixes
|
|
34
|
+
- `ci/` - CI/CD changes
|
|
35
|
+
|
|
36
|
+
Example: `feat/add-task-labels`
|
|
37
|
+
|
|
38
|
+
### Making Changes
|
|
39
|
+
|
|
40
|
+
1. Create a feature branch from `main`:
|
|
41
|
+
```bash
|
|
42
|
+
git checkout -b feat/your-feature-name
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
2. Make your changes following the code style and conventions
|
|
46
|
+
|
|
47
|
+
3. Run tests and type checking:
|
|
48
|
+
```bash
|
|
49
|
+
bun test
|
|
50
|
+
bun run typecheck
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
4. Build the project to ensure it compiles:
|
|
54
|
+
```bash
|
|
55
|
+
bun run build
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
5. Create a changeset for your changes:
|
|
59
|
+
```bash
|
|
60
|
+
bun run changeset
|
|
61
|
+
```
|
|
62
|
+
Follow the prompts to describe your changes.
|
|
63
|
+
|
|
64
|
+
6. Commit your changes using conventional commit format:
|
|
65
|
+
```bash
|
|
66
|
+
git add .
|
|
67
|
+
git commit -m "feat: add support for task labels"
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
7. Push your branch and create a pull request
|
|
71
|
+
|
|
72
|
+
## Code Style and Conventions
|
|
73
|
+
|
|
74
|
+
### TypeScript Guidelines
|
|
75
|
+
- Use TypeScript strict mode
|
|
76
|
+
- Prefer explicit types over `any`
|
|
77
|
+
- Use Zod schemas for all tool parameters and responses
|
|
78
|
+
- Follow the existing modular architecture patterns
|
|
79
|
+
|
|
80
|
+
### Architecture Patterns
|
|
81
|
+
- Tools should be organized by resource type (user, task, stream)
|
|
82
|
+
- Use the `createToolWrapper` utility for consistent error handling
|
|
83
|
+
- Apply response optimization (filtering and trimming) for large datasets
|
|
84
|
+
- Follow the dual transport pattern for stdio/httpStream compatibility
|
|
85
|
+
|
|
86
|
+
### Testing
|
|
87
|
+
- Write tests for new Zod schemas in `src/schemas.test.ts`
|
|
88
|
+
- Ensure all existing tests pass before submitting PR
|
|
89
|
+
- Test both stdio and httpStream transports when applicable
|
|
90
|
+
|
|
91
|
+
## Testing Your Changes
|
|
92
|
+
|
|
93
|
+
### Unit Tests
|
|
94
|
+
```bash
|
|
95
|
+
bun test # Run all tests
|
|
96
|
+
bun test:watch # Run tests in watch mode
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
### Integration Testing
|
|
100
|
+
```bash
|
|
101
|
+
# Test with MCP Inspector
|
|
102
|
+
bun run inspect
|
|
103
|
+
|
|
104
|
+
# Test stdio transport directly
|
|
105
|
+
echo '{"jsonrpc":"2.0","method":"initialize","id":1,"params":{"protocolVersion":"1.0.0","capabilities":{},"clientInfo":{"name":"test","version":"1.0.0"}}}' | bun src/main.ts
|
|
106
|
+
|
|
107
|
+
# Test compiled output
|
|
108
|
+
bun run build
|
|
109
|
+
node dist/main.js
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
### Testing with Raycast
|
|
113
|
+
1. Build the project: `bun run build`
|
|
114
|
+
2. Add to Raycast MCP configuration:
|
|
115
|
+
```json
|
|
116
|
+
{
|
|
117
|
+
"mcpServers": {
|
|
118
|
+
"sunsama-dev": {
|
|
119
|
+
"command": "node",
|
|
120
|
+
"args": ["/path/to/your/mcp-sunsama/dist/main.js"],
|
|
121
|
+
"env": {
|
|
122
|
+
"SUNSAMA_EMAIL": "your-email",
|
|
123
|
+
"SUNSAMA_PASSWORD": "your-password"
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
```
|
|
129
|
+
3. Test in Raycast using `@mcp` mentions
|
|
130
|
+
|
|
131
|
+
## For Maintainers
|
|
132
|
+
|
|
133
|
+
### Release Process
|
|
134
|
+
|
|
135
|
+
This project uses [changesets](https://github.com/changesets/changesets) for version management and npm releases.
|
|
136
|
+
|
|
137
|
+
#### Prerequisites
|
|
138
|
+
- npm authentication configured (`npm login`)
|
|
139
|
+
- Write access to the main branch
|
|
140
|
+
- All tests passing on main branch
|
|
141
|
+
|
|
142
|
+
#### Creating a Release
|
|
143
|
+
|
|
144
|
+
1. **Preparation**
|
|
145
|
+
```bash
|
|
146
|
+
git checkout main
|
|
147
|
+
git pull
|
|
148
|
+
bun test # Ensure all tests pass
|
|
149
|
+
bun run typecheck # Check for TypeScript errors
|
|
150
|
+
bun run build # Verify clean build
|
|
151
|
+
```
|
|
152
|
+
|
|
153
|
+
2. **Version Update**
|
|
154
|
+
```bash
|
|
155
|
+
bun run version # Apply changesets and update package.json
|
|
156
|
+
```
|
|
157
|
+
|
|
158
|
+
**IMPORTANT**: After running this command, manually update the MCP server version in `src/main.ts` (line ~19) to match the new version in `package.json`:
|
|
159
|
+
```typescript
|
|
160
|
+
const server = new FastMCP({
|
|
161
|
+
name: "Sunsama API Server",
|
|
162
|
+
version: "X.Y.Z", // <-- Update this to match package.json
|
|
163
|
+
```
|
|
164
|
+
|
|
165
|
+
3. **Pre-Release Validation**
|
|
166
|
+
```bash
|
|
167
|
+
bun run typecheck # Ensure no TypeScript errors
|
|
168
|
+
bun test # Verify all tests pass
|
|
169
|
+
bun run build # Ensure clean build
|
|
170
|
+
```
|
|
171
|
+
|
|
172
|
+
4. **Commit Version Changes**
|
|
173
|
+
```bash
|
|
174
|
+
git add .
|
|
175
|
+
git commit -m "chore: release version $(cat package.json | grep '"version"' | cut -d'"' -f4)"
|
|
176
|
+
```
|
|
177
|
+
Verify the commit includes:
|
|
178
|
+
- `package.json` - version bump
|
|
179
|
+
- `CHANGELOG.md` - generated changelog
|
|
180
|
+
- `src/main.ts` - MCP server version update
|
|
181
|
+
- Removed changeset files from `.changeset/`
|
|
182
|
+
|
|
183
|
+
5. **Publish to NPM**
|
|
184
|
+
```bash
|
|
185
|
+
bun run release # Builds and publishes to npm
|
|
186
|
+
```
|
|
187
|
+
This command runs `bun run build && changeset publish`
|
|
188
|
+
|
|
189
|
+
6. **Push Changes**
|
|
190
|
+
```bash
|
|
191
|
+
git push # Push version commit
|
|
192
|
+
git push --tags # Push version tags
|
|
193
|
+
```
|
|
194
|
+
|
|
195
|
+
7. **Verify Release**
|
|
196
|
+
- Check npm: https://www.npmjs.com/package/mcp-sunsama
|
|
197
|
+
- Test installation: `npx mcp-sunsama@latest`
|
|
198
|
+
- Verify GitHub release tag appears
|
|
199
|
+
|
|
200
|
+
#### Version Synchronization
|
|
201
|
+
|
|
202
|
+
The MCP server version in `src/main.ts` must always match the version in `package.json`. This ensures clients receive accurate version information during the MCP handshake.
|
|
203
|
+
|
|
204
|
+
#### Troubleshooting Releases
|
|
205
|
+
|
|
206
|
+
- **npm publish fails**: Check `npm whoami` and ensure you're logged in
|
|
207
|
+
- **Version conflict**: Run `npm view mcp-sunsama versions` to check existing versions
|
|
208
|
+
- **Build fails**: Fix TypeScript/build errors before attempting release
|
|
209
|
+
- **Changeset issues**: Ensure all changesets are committed before running `version`
|
|
210
|
+
|
|
211
|
+
### Dependency Updates
|
|
212
|
+
|
|
213
|
+
When updating dependencies, especially FastMCP:
|
|
214
|
+
1. Update the dependency: `bun add fastmcp@X.Y.Z`
|
|
215
|
+
2. Run full test suite: `bun test`
|
|
216
|
+
3. Test with MCP Inspector: `bun run inspect`
|
|
217
|
+
4. Test stdio transport functionality
|
|
218
|
+
5. Create a changeset describing the update
|
|
219
|
+
|
|
220
|
+
## Questions or Issues?
|
|
221
|
+
|
|
222
|
+
- Open an issue on [GitHub](https://github.com/robertn702/mcp-sunsama/issues)
|
|
223
|
+
- Check existing issues before creating a new one
|
|
224
|
+
- Provide reproduction steps for bugs
|
|
225
|
+
- Include your environment details (OS, Node version, Bun version)
|
|
226
|
+
|
|
227
|
+
## License
|
|
228
|
+
|
|
229
|
+
By contributing, you agree that your contributions will be licensed under the project's MIT License.
|
package/README.md
CHANGED
|
@@ -121,11 +121,43 @@ bun run inspect
|
|
|
121
121
|
|
|
122
122
|
Then connect the MCP Inspector to test the tools interactively.
|
|
123
123
|
|
|
124
|
-
### Build
|
|
124
|
+
### Build and Type Checking
|
|
125
125
|
```bash
|
|
126
|
-
bun run build
|
|
126
|
+
bun run build # Compile TypeScript to dist/
|
|
127
|
+
bun run typecheck # Run TypeScript type checking
|
|
128
|
+
bun run typecheck:watch # Watch mode type checking
|
|
127
129
|
```
|
|
128
130
|
|
|
131
|
+
### Release Process
|
|
132
|
+
For information on creating releases and publishing to npm, see [CONTRIBUTING.md](CONTRIBUTING.md#release-process).
|
|
133
|
+
|
|
134
|
+
### Code Architecture
|
|
135
|
+
|
|
136
|
+
The server is organized with a modular, resource-based architecture:
|
|
137
|
+
|
|
138
|
+
```
|
|
139
|
+
src/
|
|
140
|
+
├── tools/
|
|
141
|
+
│ ├── shared.ts # Common utilities and patterns
|
|
142
|
+
│ ├── user-tools.ts # User operations (get-user)
|
|
143
|
+
│ ├── task-tools.ts # Task operations (14 tools)
|
|
144
|
+
│ ├── stream-tools.ts # Stream operations (get-streams)
|
|
145
|
+
│ └── index.ts # Export all tools
|
|
146
|
+
├── resources/
|
|
147
|
+
│ └── index.ts # API documentation resource
|
|
148
|
+
├── auth/ # Authentication strategies
|
|
149
|
+
├── config/ # Environment configuration
|
|
150
|
+
├── utils/ # Utilities (filtering, trimming, etc.)
|
|
151
|
+
└── main.ts # Server setup (47 lines vs 1162 before refactoring)
|
|
152
|
+
```
|
|
153
|
+
|
|
154
|
+
**Key Features:**
|
|
155
|
+
- **Type Safety**: Full TypeScript typing with Zod schema validation
|
|
156
|
+
- **Parameter Destructuring**: Clean, explicit function signatures
|
|
157
|
+
- **Shared Utilities**: Common patterns extracted to reduce duplication
|
|
158
|
+
- **Error Handling**: Standardized error handling across all tools
|
|
159
|
+
- **Response Optimization**: Task filtering and trimming for large datasets
|
|
160
|
+
|
|
129
161
|
## Authentication
|
|
130
162
|
|
|
131
163
|
**Stdio Transport:** Requires `SUNSAMA_EMAIL` and `SUNSAMA_PASSWORD` environment variables.
|
|
@@ -134,10 +166,17 @@ bun run build
|
|
|
134
166
|
|
|
135
167
|
## Contributing
|
|
136
168
|
|
|
137
|
-
|
|
138
|
-
|
|
169
|
+
We welcome contributions! Please see [CONTRIBUTING.md](CONTRIBUTING.md) for detailed guidelines on:
|
|
170
|
+
- Development workflow
|
|
171
|
+
- Code style and conventions
|
|
172
|
+
- Testing requirements
|
|
173
|
+
- Release process (for maintainers)
|
|
174
|
+
|
|
175
|
+
Quick start:
|
|
176
|
+
1. Fork and clone the repository
|
|
177
|
+
2. Install dependencies: `bun install`
|
|
139
178
|
3. Make your changes
|
|
140
|
-
4.
|
|
179
|
+
4. Create a changeset: `bun run changeset`
|
|
141
180
|
5. Submit a pull request
|
|
142
181
|
|
|
143
182
|
## License
|
package/bun.lock
CHANGED
|
@@ -5,13 +5,13 @@
|
|
|
5
5
|
"name": "mcp-sunsama",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@types/papaparse": "^5.3.16",
|
|
8
|
-
"fastmcp": "3.
|
|
8
|
+
"fastmcp": "3.18.0",
|
|
9
9
|
"papaparse": "^5.5.3",
|
|
10
10
|
"sunsama-api": "0.11.0",
|
|
11
11
|
"zod": "3.24.4",
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
|
-
"@changesets/cli": "^2.29.
|
|
14
|
+
"@changesets/cli": "^2.29.7",
|
|
15
15
|
"@types/bun": "latest",
|
|
16
16
|
"typescript": "^5",
|
|
17
17
|
},
|
|
@@ -20,13 +20,13 @@
|
|
|
20
20
|
"packages": {
|
|
21
21
|
"@babel/runtime": ["@babel/runtime@7.27.6", "", {}, "sha512-vbavdySgbTTrmFE+EsiqUTzlOr5bzlnJtUv9PynGCAKvfQqjIXbvFdumPM/GxMDfyuGMJaJAU6TO4zc1Jf1i8Q=="],
|
|
22
22
|
|
|
23
|
-
"@changesets/apply-release-plan": ["@changesets/apply-release-plan@7.0.
|
|
23
|
+
"@changesets/apply-release-plan": ["@changesets/apply-release-plan@7.0.13", "", { "dependencies": { "@changesets/config": "^3.1.1", "@changesets/get-version-range-type": "^0.4.0", "@changesets/git": "^3.0.4", "@changesets/should-skip-package": "^0.1.2", "@changesets/types": "^6.1.0", "@manypkg/get-packages": "^1.1.3", "detect-indent": "^6.0.0", "fs-extra": "^7.0.1", "lodash.startcase": "^4.4.0", "outdent": "^0.5.0", "prettier": "^2.7.1", "resolve-from": "^5.0.0", "semver": "^7.5.3" } }, "sha512-BIW7bofD2yAWoE8H4V40FikC+1nNFEKBisMECccS16W1rt6qqhNTBDmIw5HaqmMgtLNz9e7oiALiEUuKrQ4oHg=="],
|
|
24
24
|
|
|
25
|
-
"@changesets/assemble-release-plan": ["@changesets/assemble-release-plan@6.0.
|
|
25
|
+
"@changesets/assemble-release-plan": ["@changesets/assemble-release-plan@6.0.9", "", { "dependencies": { "@changesets/errors": "^0.2.0", "@changesets/get-dependents-graph": "^2.1.3", "@changesets/should-skip-package": "^0.1.2", "@changesets/types": "^6.1.0", "@manypkg/get-packages": "^1.1.3", "semver": "^7.5.3" } }, "sha512-tPgeeqCHIwNo8sypKlS3gOPmsS3wP0zHt67JDuL20P4QcXiw/O4Hl7oXiuLnP9yg+rXLQ2sScdV1Kkzde61iSQ=="],
|
|
26
26
|
|
|
27
27
|
"@changesets/changelog-git": ["@changesets/changelog-git@0.2.1", "", { "dependencies": { "@changesets/types": "^6.1.0" } }, "sha512-x/xEleCFLH28c3bQeQIyeZf8lFXyDFVn1SgcBiR2Tw/r4IAWlk1fzxCEZ6NxQAjF2Nwtczoen3OA2qR+UawQ8Q=="],
|
|
28
28
|
|
|
29
|
-
"@changesets/cli": ["@changesets/cli@2.29.
|
|
29
|
+
"@changesets/cli": ["@changesets/cli@2.29.7", "", { "dependencies": { "@changesets/apply-release-plan": "^7.0.13", "@changesets/assemble-release-plan": "^6.0.9", "@changesets/changelog-git": "^0.2.1", "@changesets/config": "^3.1.1", "@changesets/errors": "^0.2.0", "@changesets/get-dependents-graph": "^2.1.3", "@changesets/get-release-plan": "^4.0.13", "@changesets/git": "^3.0.4", "@changesets/logger": "^0.1.1", "@changesets/pre": "^2.0.2", "@changesets/read": "^0.6.5", "@changesets/should-skip-package": "^0.1.2", "@changesets/types": "^6.1.0", "@changesets/write": "^0.4.0", "@inquirer/external-editor": "^1.0.0", "@manypkg/get-packages": "^1.1.3", "ansi-colors": "^4.1.3", "ci-info": "^3.7.0", "enquirer": "^2.4.1", "fs-extra": "^7.0.1", "mri": "^1.2.0", "p-limit": "^2.2.0", "package-manager-detector": "^0.2.0", "picocolors": "^1.1.0", "resolve-from": "^5.0.0", "semver": "^7.5.3", "spawndamnit": "^3.0.1", "term-size": "^2.1.0" }, "bin": { "changeset": "bin.js" } }, "sha512-R7RqWoaksyyKXbKXBTbT4REdy22yH81mcFK6sWtqSanxUCbUi9Uf+6aqxZtDQouIqPdem2W56CdxXgsxdq7FLQ=="],
|
|
30
30
|
|
|
31
31
|
"@changesets/config": ["@changesets/config@3.1.1", "", { "dependencies": { "@changesets/errors": "^0.2.0", "@changesets/get-dependents-graph": "^2.1.3", "@changesets/logger": "^0.1.1", "@changesets/types": "^6.1.0", "@manypkg/get-packages": "^1.1.3", "fs-extra": "^7.0.1", "micromatch": "^4.0.8" } }, "sha512-bd+3Ap2TKXxljCggI0mKPfzCQKeV/TU4yO2h2C6vAihIo8tzseAn2e7klSuiyYYXvgu53zMN1OeYMIQkaQoWnA=="],
|
|
32
32
|
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
|
|
35
35
|
"@changesets/get-dependents-graph": ["@changesets/get-dependents-graph@2.1.3", "", { "dependencies": { "@changesets/types": "^6.1.0", "@manypkg/get-packages": "^1.1.3", "picocolors": "^1.1.0", "semver": "^7.5.3" } }, "sha512-gphr+v0mv2I3Oxt19VdWRRUxq3sseyUpX9DaHpTUmLj92Y10AGy+XOtV+kbM6L/fDcpx7/ISDFK6T8A/P3lOdQ=="],
|
|
36
36
|
|
|
37
|
-
"@changesets/get-release-plan": ["@changesets/get-release-plan@4.0.
|
|
37
|
+
"@changesets/get-release-plan": ["@changesets/get-release-plan@4.0.13", "", { "dependencies": { "@changesets/assemble-release-plan": "^6.0.9", "@changesets/config": "^3.1.1", "@changesets/pre": "^2.0.2", "@changesets/read": "^0.6.5", "@changesets/types": "^6.1.0", "@manypkg/get-packages": "^1.1.3" } }, "sha512-DWG1pus72FcNeXkM12tx+xtExyH/c9I1z+2aXlObH3i9YA7+WZEVaiHzHl03thpvAgWTRaH64MpfHxozfF7Dvg=="],
|
|
38
38
|
|
|
39
39
|
"@changesets/get-version-range-type": ["@changesets/get-version-range-type@0.4.0", "", {}, "sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ=="],
|
|
40
40
|
|
|
@@ -54,13 +54,15 @@
|
|
|
54
54
|
|
|
55
55
|
"@changesets/write": ["@changesets/write@0.4.0", "", { "dependencies": { "@changesets/types": "^6.1.0", "fs-extra": "^7.0.1", "human-id": "^4.1.1", "prettier": "^2.7.1" } }, "sha512-CdTLvIOPiCNuH71pyDu3rA+Q0n65cmAbXnwWH84rKGiFumFzkmHNT8KHTMEchcxN+Kl8I54xGUhJ7l3E7X396Q=="],
|
|
56
56
|
|
|
57
|
+
"@inquirer/external-editor": ["@inquirer/external-editor@1.0.2", "", { "dependencies": { "chardet": "^2.1.0", "iconv-lite": "^0.7.0" }, "peerDependencies": { "@types/node": ">=18" }, "optionalPeers": ["@types/node"] }, "sha512-yy9cOoBnx58TlsPrIxauKIFQTiyH+0MK4e97y4sV9ERbI+zDxw7i2hxHLCIEGIE/8PPvDxGhgzIOTSOWcs6/MQ=="],
|
|
58
|
+
|
|
57
59
|
"@manypkg/find-root": ["@manypkg/find-root@1.1.0", "", { "dependencies": { "@babel/runtime": "^7.5.5", "@types/node": "^12.7.1", "find-up": "^4.1.0", "fs-extra": "^8.1.0" } }, "sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA=="],
|
|
58
60
|
|
|
59
61
|
"@manypkg/get-packages": ["@manypkg/get-packages@1.1.3", "", { "dependencies": { "@babel/runtime": "^7.5.5", "@changesets/types": "^4.0.1", "@manypkg/find-root": "^1.1.0", "fs-extra": "^8.1.0", "globby": "^11.0.0", "read-yaml-file": "^1.1.0" } }, "sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A=="],
|
|
60
62
|
|
|
61
63
|
"@mixmark-io/domino": ["@mixmark-io/domino@2.2.0", "", {}, "sha512-Y28PR25bHXUg88kCV7nivXrP2Nj2RueZ3/l/jdx6J9f8J4nsEGcgX0Qe6lt7Pa+J79+kPiJU3LguR6O/6zrLOw=="],
|
|
62
64
|
|
|
63
|
-
"@modelcontextprotocol/sdk": ["@modelcontextprotocol/sdk@1.
|
|
65
|
+
"@modelcontextprotocol/sdk": ["@modelcontextprotocol/sdk@1.18.2", "", { "dependencies": { "ajv": "^6.12.6", "content-type": "^1.0.5", "cors": "^2.8.5", "cross-spawn": "^7.0.5", "eventsource": "^3.0.2", "eventsource-parser": "^3.0.0", "express": "^5.0.1", "express-rate-limit": "^7.5.0", "pkce-challenge": "^5.0.0", "raw-body": "^3.0.0", "zod": "^3.23.8", "zod-to-json-schema": "^3.24.1" } }, "sha512-beedclIvFcCnPrYgHsylqiYJVJ/CI47Vyc4tY8no1/Li/O8U4BTlJfy6ZwxkYwx+Mx10nrgwSVrA7VBbhh4slg=="],
|
|
64
66
|
|
|
65
67
|
"@nodelib/fs.scandir": ["@nodelib/fs.scandir@2.1.5", "", { "dependencies": { "@nodelib/fs.stat": "2.0.5", "run-parallel": "^1.1.9" } }, "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g=="],
|
|
66
68
|
|
|
@@ -112,7 +114,7 @@
|
|
|
112
114
|
|
|
113
115
|
"call-bound": ["call-bound@1.0.4", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.2", "get-intrinsic": "^1.3.0" } }, "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg=="],
|
|
114
116
|
|
|
115
|
-
"chardet": ["chardet@
|
|
117
|
+
"chardet": ["chardet@2.1.0", "", {}, "sha512-bNFETTG/pM5ryzQ9Ad0lJOTa6HWD/YsScAR3EnCPZRPlQh77JocYktSHOUHelyhm8IARL+o4c4F1bP5KVOjiRA=="],
|
|
116
118
|
|
|
117
119
|
"ci-info": ["ci-info@3.9.0", "", {}, "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ=="],
|
|
118
120
|
|
|
@@ -174,15 +176,13 @@
|
|
|
174
176
|
|
|
175
177
|
"extendable-error": ["extendable-error@0.1.7", "", {}, "sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg=="],
|
|
176
178
|
|
|
177
|
-
"external-editor": ["external-editor@3.1.0", "", { "dependencies": { "chardet": "^0.7.0", "iconv-lite": "^0.4.24", "tmp": "^0.0.33" } }, "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew=="],
|
|
178
|
-
|
|
179
179
|
"fast-deep-equal": ["fast-deep-equal@3.1.3", "", {}, "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="],
|
|
180
180
|
|
|
181
181
|
"fast-glob": ["fast-glob@3.3.3", "", { "dependencies": { "@nodelib/fs.stat": "^2.0.2", "@nodelib/fs.walk": "^1.2.3", "glob-parent": "^5.1.2", "merge2": "^1.3.0", "micromatch": "^4.0.8" } }, "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg=="],
|
|
182
182
|
|
|
183
183
|
"fast-json-stable-stringify": ["fast-json-stable-stringify@2.1.0", "", {}, "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="],
|
|
184
184
|
|
|
185
|
-
"fastmcp": ["fastmcp@3.
|
|
185
|
+
"fastmcp": ["fastmcp@3.18.0", "", { "dependencies": { "@modelcontextprotocol/sdk": "^1.17.2", "@standard-schema/spec": "^1.0.0", "execa": "^9.6.0", "file-type": "^21.0.0", "fuse.js": "^7.1.0", "mcp-proxy": "^5.5.4", "strict-event-emitter-types": "^2.0.0", "undici": "^7.13.0", "uri-templates": "^0.2.0", "xsschema": "0.3.5", "yargs": "^18.0.0", "zod": "^3.25.76", "zod-to-json-schema": "^3.24.6" }, "bin": { "fastmcp": "dist/bin/fastmcp.js" } }, "sha512-Td8+QMHmA8WeLTczlMIvV+/Xvk164d/047Hku3kwExuwm3tgMTrwmTI10euP04lNE5WCFZ1xdF9XISnMxeJ3yw=="],
|
|
186
186
|
|
|
187
187
|
"fastq": ["fastq@1.19.1", "", { "dependencies": { "reusify": "^1.0.4" } }, "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ=="],
|
|
188
188
|
|
|
@@ -240,7 +240,7 @@
|
|
|
240
240
|
|
|
241
241
|
"human-signals": ["human-signals@8.0.1", "", {}, "sha512-eKCa6bwnJhvxj14kZk5NCPc6Hb6BdsU9DZcOnmQKSnO1VKrfV0zCvtttPZUsBvjmNDn8rpcJfpwSYnHBjc95MQ=="],
|
|
242
242
|
|
|
243
|
-
"iconv-lite": ["iconv-lite@0.
|
|
243
|
+
"iconv-lite": ["iconv-lite@0.7.0", "", { "dependencies": { "safer-buffer": ">= 2.1.2 < 3.0.0" } }, "sha512-cf6L2Ds3h57VVmkZe+Pn+5APsT7FpqJtEhhieDCvrE2MK5Qk9MyffgQyuxQTm6BChfeZNtcOLHp9IcWRVcIcBQ=="],
|
|
244
244
|
|
|
245
245
|
"ieee754": ["ieee754@1.2.1", "", {}, "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA=="],
|
|
246
246
|
|
|
@@ -288,7 +288,7 @@
|
|
|
288
288
|
|
|
289
289
|
"math-intrinsics": ["math-intrinsics@1.1.0", "", {}, "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g=="],
|
|
290
290
|
|
|
291
|
-
"mcp-proxy": ["mcp-proxy@5.1
|
|
291
|
+
"mcp-proxy": ["mcp-proxy@5.6.1", "", { "bin": { "mcp-proxy": "dist/bin/mcp-proxy.js" } }, "sha512-307KBxoJ4YS4fsa26MFkHLcuWYUoy/bTj/VNG/Km8/elgydEh0o+YpJiG7ywUrHhSsaYKpBc9OgMRxibUCjKKA=="],
|
|
292
292
|
|
|
293
293
|
"media-typer": ["media-typer@1.1.0", "", {}, "sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw=="],
|
|
294
294
|
|
|
@@ -318,8 +318,6 @@
|
|
|
318
318
|
|
|
319
319
|
"once": ["once@1.4.0", "", { "dependencies": { "wrappy": "1" } }, "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w=="],
|
|
320
320
|
|
|
321
|
-
"os-tmpdir": ["os-tmpdir@1.0.2", "", {}, "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g=="],
|
|
322
|
-
|
|
323
321
|
"outdent": ["outdent@0.5.0", "", {}, "sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q=="],
|
|
324
322
|
|
|
325
323
|
"p-filter": ["p-filter@2.1.0", "", { "dependencies": { "p-map": "^2.0.0" } }, "sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw=="],
|
|
@@ -438,8 +436,6 @@
|
|
|
438
436
|
|
|
439
437
|
"tldts-core": ["tldts-core@6.1.86", "", {}, "sha512-Je6p7pkk+KMzMv2XXKmAE3McmolOQFdxkKw0R8EYNr7sELW46JqnNeTX8ybPiQgvg1ymCoF8LXs5fzFaZvJPTA=="],
|
|
440
438
|
|
|
441
|
-
"tmp": ["tmp@0.0.33", "", { "dependencies": { "os-tmpdir": "~1.0.2" } }, "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw=="],
|
|
442
|
-
|
|
443
439
|
"to-regex-range": ["to-regex-range@5.0.1", "", { "dependencies": { "is-number": "^7.0.0" } }, "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ=="],
|
|
444
440
|
|
|
445
441
|
"toidentifier": ["toidentifier@1.0.1", "", {}, "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA=="],
|
|
@@ -458,7 +454,7 @@
|
|
|
458
454
|
|
|
459
455
|
"uint8array-extras": ["uint8array-extras@1.4.0", "", {}, "sha512-ZPtzy0hu4cZjv3z5NW9gfKnNLjoz4y6uv4HlelAjDK7sY/xOkKZv9xK/WQpcsBB3jEybChz9DPC2U/+cusjJVQ=="],
|
|
460
456
|
|
|
461
|
-
"undici": ["undici@7.
|
|
457
|
+
"undici": ["undici@7.16.0", "", {}, "sha512-QEg3HPMll0o3t2ourKwOeUAZ159Kn9mx5pnzHRQO8+Wixmh88YdZRiIwat0iNzNNXn0yoEtXJqFpyW7eM8BV7g=="],
|
|
462
458
|
|
|
463
459
|
"undici-types": ["undici-types@6.21.0", "", {}, "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ=="],
|
|
464
460
|
|
|
@@ -480,7 +476,7 @@
|
|
|
480
476
|
|
|
481
477
|
"wrappy": ["wrappy@1.0.2", "", {}, "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="],
|
|
482
478
|
|
|
483
|
-
"xsschema": ["xsschema@0.3.
|
|
479
|
+
"xsschema": ["xsschema@0.3.5", "", { "peerDependencies": { "@valibot/to-json-schema": "^1.0.0", "arktype": "^2.1.20", "effect": "^3.16.0", "sury": "^10.0.0", "zod": "^3.25.0 || ^4.0.0", "zod-to-json-schema": "^3.24.5" }, "optionalPeers": ["@valibot/to-json-schema", "arktype", "effect", "sury", "zod", "zod-to-json-schema"] }, "sha512-f+dcy11dTv7aBEEfTbXWnrm/1b/Ds2k4taN0TpN6KCtPAD58kyE/R1znUdrHdBnhIFexj9k+pS1fm6FgtSISrQ=="],
|
|
484
480
|
|
|
485
481
|
"y18n": ["y18n@5.0.8", "", {}, "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA=="],
|
|
486
482
|
|
|
@@ -494,7 +490,7 @@
|
|
|
494
490
|
|
|
495
491
|
"zod": ["zod@3.24.4", "", {}, "sha512-OdqJE9UDRPwWsrHjLN2F8bPxvwJBK22EHLWtanu0LSYr5YqzsaaW3RMgmjwr8Rypg5k+meEJdSPXJZXE/yqOMg=="],
|
|
496
492
|
|
|
497
|
-
"zod-to-json-schema": ["zod-to-json-schema@3.24.
|
|
493
|
+
"zod-to-json-schema": ["zod-to-json-schema@3.24.6", "", { "peerDependencies": { "zod": "^3.24.1" } }, "sha512-h/z3PKvcTcTetyjl1fkj79MHNEjm+HpD6NXheWjzOekY7kV+lwDYnHw+ivHkijnCSMz1yJaWBD9vu/Fcmk+vEg=="],
|
|
498
494
|
|
|
499
495
|
"@manypkg/find-root/@types/node": ["@types/node@12.20.55", "", {}, "sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ=="],
|
|
500
496
|
|
|
@@ -504,18 +500,16 @@
|
|
|
504
500
|
|
|
505
501
|
"@manypkg/get-packages/fs-extra": ["fs-extra@8.1.0", "", { "dependencies": { "graceful-fs": "^4.2.0", "jsonfile": "^4.0.0", "universalify": "^0.1.0" } }, "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g=="],
|
|
506
502
|
|
|
507
|
-
"@modelcontextprotocol/sdk/zod": ["zod@3.25.
|
|
503
|
+
"@modelcontextprotocol/sdk/zod": ["zod@3.25.76", "", {}, "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ=="],
|
|
508
504
|
|
|
509
505
|
"body-parser/iconv-lite": ["iconv-lite@0.6.3", "", { "dependencies": { "safer-buffer": ">= 2.1.2 < 3.0.0" } }, "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw=="],
|
|
510
506
|
|
|
511
507
|
"cliui/strip-ansi": ["strip-ansi@7.1.0", "", { "dependencies": { "ansi-regex": "^6.0.1" } }, "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ=="],
|
|
512
508
|
|
|
513
|
-
"fastmcp/zod": ["zod@3.25.
|
|
509
|
+
"fastmcp/zod": ["zod@3.25.76", "", {}, "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ=="],
|
|
514
510
|
|
|
515
511
|
"http-errors/statuses": ["statuses@2.0.1", "", {}, "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ=="],
|
|
516
512
|
|
|
517
|
-
"mcp-proxy/eventsource": ["eventsource@4.0.0", "", { "dependencies": { "eventsource-parser": "^3.0.1" } }, "sha512-fvIkb9qZzdMxgZrEQDyll+9oJsyaVvY92I2Re+qK0qEJ+w5s0X3dtz+M0VAPOjP1gtU3iqWyjQ0G3nvd5CLZ2g=="],
|
|
518
|
-
|
|
519
513
|
"npm-run-path/path-key": ["path-key@4.0.0", "", {}, "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ=="],
|
|
520
514
|
|
|
521
515
|
"raw-body/iconv-lite": ["iconv-lite@0.6.3", "", { "dependencies": { "safer-buffer": ">= 2.1.2 < 3.0.0" } }, "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw=="],
|