webmcp 0.0.1__tar.gz
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.
- webmcp-0.0.1/PKG-INFO +40 -0
- webmcp-0.0.1/README.md +21 -0
- webmcp-0.0.1/pyproject.toml +28 -0
- webmcp-0.0.1/setup.cfg +4 -0
- webmcp-0.0.1/webmcp/__init__.py +5 -0
- webmcp-0.0.1/webmcp.egg-info/PKG-INFO +40 -0
- webmcp-0.0.1/webmcp.egg-info/SOURCES.txt +7 -0
- webmcp-0.0.1/webmcp.egg-info/dependency_links.txt +1 -0
- webmcp-0.0.1/webmcp.egg-info/top_level.txt +1 -0
webmcp-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: webmcp
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Web-based Model Context Protocol (MCP) tools and utilities
|
|
5
|
+
Author: webmcp contributors
|
|
6
|
+
Project-URL: Homepage, https://github.com/anthropics/webmcp
|
|
7
|
+
Keywords: mcp,model-context-protocol,web,ai,llm
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Requires-Python: >=3.8
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
|
|
20
|
+
# webmcp
|
|
21
|
+
|
|
22
|
+
Web-based Model Context Protocol (MCP) tools and utilities.
|
|
23
|
+
|
|
24
|
+
## Overview
|
|
25
|
+
|
|
26
|
+
webmcp provides tools for building web-enabled MCP servers and clients, allowing AI agents to interact with web browsers and web content.
|
|
27
|
+
|
|
28
|
+
## Installation
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
pip install webmcp
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## Status
|
|
35
|
+
|
|
36
|
+
This package is under active development. Stay tuned for updates.
|
|
37
|
+
|
|
38
|
+
## License
|
|
39
|
+
|
|
40
|
+
MIT
|
webmcp-0.0.1/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
|
+
pip install webmcp
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Status
|
|
16
|
+
|
|
17
|
+
This package is under active development. Stay tuned for updates.
|
|
18
|
+
|
|
19
|
+
## License
|
|
20
|
+
|
|
21
|
+
MIT
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "webmcp"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
authors = [
|
|
9
|
+
{ name = "webmcp contributors" }
|
|
10
|
+
]
|
|
11
|
+
description = "Web-based Model Context Protocol (MCP) tools and utilities"
|
|
12
|
+
readme = "README.md"
|
|
13
|
+
requires-python = ">=3.8"
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"License :: OSI Approved :: MIT License",
|
|
18
|
+
"Programming Language :: Python :: 3",
|
|
19
|
+
"Programming Language :: Python :: 3.8",
|
|
20
|
+
"Programming Language :: Python :: 3.9",
|
|
21
|
+
"Programming Language :: Python :: 3.10",
|
|
22
|
+
"Programming Language :: Python :: 3.11",
|
|
23
|
+
"Programming Language :: Python :: 3.12",
|
|
24
|
+
]
|
|
25
|
+
keywords = ["mcp", "model-context-protocol", "web", "ai", "llm"]
|
|
26
|
+
|
|
27
|
+
[project.urls]
|
|
28
|
+
"Homepage" = "https://github.com/anthropics/webmcp"
|
webmcp-0.0.1/setup.cfg
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: webmcp
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Web-based Model Context Protocol (MCP) tools and utilities
|
|
5
|
+
Author: webmcp contributors
|
|
6
|
+
Project-URL: Homepage, https://github.com/anthropics/webmcp
|
|
7
|
+
Keywords: mcp,model-context-protocol,web,ai,llm
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Requires-Python: >=3.8
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
|
|
20
|
+
# webmcp
|
|
21
|
+
|
|
22
|
+
Web-based Model Context Protocol (MCP) tools and utilities.
|
|
23
|
+
|
|
24
|
+
## Overview
|
|
25
|
+
|
|
26
|
+
webmcp provides tools for building web-enabled MCP servers and clients, allowing AI agents to interact with web browsers and web content.
|
|
27
|
+
|
|
28
|
+
## Installation
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
pip install webmcp
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## Status
|
|
35
|
+
|
|
36
|
+
This package is under active development. Stay tuned for updates.
|
|
37
|
+
|
|
38
|
+
## License
|
|
39
|
+
|
|
40
|
+
MIT
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
webmcp
|