@r-cli/sdk 1.0.112
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 +29 -0
- package/package.json +34 -0
- package/sdk.mjs +14075 -0
package/README.md
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# @r-cli/sdk
|
|
2
|
+
|
|
3
|
+
SDK for Claude Tools providing utilities for tool creation, querying, and MCP server setup.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @r-cli/sdk
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
```javascript
|
|
14
|
+
import { tool, query, createSdkMcpServer } from '@r-cli/sdk';
|
|
15
|
+
|
|
16
|
+
// Use the exported functions
|
|
17
|
+
// ...
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Exports
|
|
21
|
+
|
|
22
|
+
- `tool` - Tool creation utility
|
|
23
|
+
- `query` - Query utility
|
|
24
|
+
- `createSdkMcpServer` - MCP server creation utility
|
|
25
|
+
|
|
26
|
+
## License
|
|
27
|
+
|
|
28
|
+
UNLICENSED - Private package
|
|
29
|
+
|
package/package.json
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@r-cli/sdk",
|
|
3
|
+
"version": "1.0.112",
|
|
4
|
+
"description": "SDK for Claude Tools with tool, query, and createSdkMcpServer exports",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./sdk.mjs",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": "./sdk.mjs"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"sdk.mjs",
|
|
12
|
+
"README.md"
|
|
13
|
+
],
|
|
14
|
+
"keywords": [
|
|
15
|
+
"claude",
|
|
16
|
+
"tools",
|
|
17
|
+
"sdk",
|
|
18
|
+
"mcp"
|
|
19
|
+
],
|
|
20
|
+
"author": "",
|
|
21
|
+
"license": "UNLICENSED",
|
|
22
|
+
"private": false,
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": ""
|
|
26
|
+
},
|
|
27
|
+
"engines": {
|
|
28
|
+
"node": ">=14.0.0"
|
|
29
|
+
},
|
|
30
|
+
"publishConfig": {
|
|
31
|
+
"access": "public"
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|