@femtowin/webmcp 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/README.md ADDED
@@ -0,0 +1,21 @@
1
+ # webmcp
2
+
3
+ Web-based Model Context Protocol (MCP) tools and utilities.
4
+
5
+ ## Overview
6
+
7
+ webmcp provides tools for building web-enabled MCP servers and clients, allowing AI agents to interact with web browsers and web content.
8
+
9
+ ## Installation
10
+
11
+ ```bash
12
+ npm install webmcp
13
+ ```
14
+
15
+ ## Status
16
+
17
+ This package is under active development. Stay tuned for updates.
18
+
19
+ ## License
20
+
21
+ MIT
package/index.d.ts ADDED
@@ -0,0 +1,5 @@
1
+ /**
2
+ * webmcp - Web-based Model Context Protocol tools and utilities.
3
+ */
4
+
5
+ export const version: string;
package/index.js ADDED
@@ -0,0 +1,7 @@
1
+ /**
2
+ * webmcp - Web-based Model Context Protocol tools and utilities.
3
+ */
4
+
5
+ module.exports = {
6
+ version: '0.0.1'
7
+ };
package/package.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "@femtowin/webmcp",
3
+ "version": "0.0.1",
4
+ "description": "Web-based Model Context Protocol (MCP) tools and utilities",
5
+ "main": "index.js",
6
+ "types": "index.d.ts",
7
+ "keywords": [
8
+ "mcp",
9
+ "model-context-protocol",
10
+ "web",
11
+ "ai",
12
+ "llm"
13
+ ],
14
+ "author": "webmcp contributors",
15
+ "license": "MIT",
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "https://github.com/anthropics/webmcp"
19
+ }
20
+ }