rednote 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.
package/README.md ADDED
@@ -0,0 +1,13 @@
1
+ # rednote
2
+
3
+ > MCP server for rednote integration.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ npm install -g rednote
9
+ ```
10
+
11
+ ## Status
12
+
13
+ 🚧 Under development — coming soon.
package/package.json ADDED
@@ -0,0 +1,25 @@
1
+ {
2
+ "name": "rednote",
3
+ "version": "0.1.0",
4
+ "description": "MCP integration for rednote",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "bin": {
8
+ "mcp-rednote": "./dist/index.js"
9
+ },
10
+ "scripts": {
11
+ "build": "tsc",
12
+ "prepublish": "npm run build"
13
+ },
14
+ "keywords": ["mcp", "rednote"],
15
+ "author": "eesire",
16
+ "license": "MIT",
17
+ "dependencies": {
18
+ "@modelcontextprotocol/sdk": "^1.0.0",
19
+ "axios": "^1.6.0"
20
+ },
21
+ "devDependencies": {
22
+ "@types/node": "^20.0.0",
23
+ "typescript": "^5.3.0"
24
+ }
25
+ }
package/src/index.ts ADDED
@@ -0,0 +1 @@
1
+ // rednote MCP server
package/tsconfig.json ADDED
@@ -0,0 +1,15 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "ES2022",
4
+ "module": "NodeNext",
5
+ "moduleResolution": "NodeNext",
6
+ "outDir": "./dist",
7
+ "rootDir": "./src",
8
+ "strict": true,
9
+ "esModuleInterop": true,
10
+ "skipLibCheck": true,
11
+ "forceConsistentCasingInFileNames": true
12
+ },
13
+ "include": ["src/**/*"],
14
+ "exclude": ["node_modules", "dist"]
15
+ }