prodmcp 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/LICENSE +21 -0
- package/README.md +60 -0
- package/index.js +26 -0
- package/package.json +42 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 ProdMCP-org
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
# prodmcp
|
|
2
|
+
|
|
3
|
+
> **Name reservation** – ProdMCP is a **Python** framework. Install it from PyPI:
|
|
4
|
+
>
|
|
5
|
+
> ```bash
|
|
6
|
+
> pip install prodmcp
|
|
7
|
+
> ```
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
## What is ProdMCP?
|
|
12
|
+
|
|
13
|
+
**ProdMCP** is a production-grade framework for building [Model Context Protocol (MCP)](https://modelcontextprotocol.io) servers — the open standard that lets LLMs (Claude, GPT-4, Gemini, etc.) call tools, read resources, and prompt templates in a structured, secure way.
|
|
14
|
+
|
|
15
|
+
ProdMCP takes MCP from prototype to production with:
|
|
16
|
+
|
|
17
|
+
- 🔐 **Enterprise-grade security** — JWT auth, OAuth 2.0, rate limiting, RBAC
|
|
18
|
+
- ⚡ **High performance** — async-first, built on FastAPI
|
|
19
|
+
- 🧩 **Modular middleware** — plug-in CORS, observability, tracing
|
|
20
|
+
- 🪝 **Lifecycle hooks** — before/after tool execution
|
|
21
|
+
- 📦 **Batteries included** — structured logging, health checks, OpenAPI docs
|
|
22
|
+
|
|
23
|
+
## Installation (Python)
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
pip install prodmcp
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
## Quick Example
|
|
30
|
+
|
|
31
|
+
```python
|
|
32
|
+
from prodmcp import MCPServer, tool
|
|
33
|
+
|
|
34
|
+
app = MCPServer(name="my-server")
|
|
35
|
+
|
|
36
|
+
@app.tool()
|
|
37
|
+
async def hello(name: str) -> str:
|
|
38
|
+
"""Greet a user by name."""
|
|
39
|
+
return f"Hello, {name}!"
|
|
40
|
+
|
|
41
|
+
if __name__ == "__main__":
|
|
42
|
+
app.run()
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
## Links
|
|
46
|
+
|
|
47
|
+
| Resource | URL |
|
|
48
|
+
|---|---|
|
|
49
|
+
| 📚 Documentation | <https://prodmcp.dev> |
|
|
50
|
+
| 🐍 PyPI | <https://pypi.org/project/prodmcp> |
|
|
51
|
+
| 🐙 GitHub | <https://github.com/ProdMCP-org/ProdMCP> |
|
|
52
|
+
| 🐛 Issues | <https://github.com/ProdMCP-org/ProdMCP/issues> |
|
|
53
|
+
|
|
54
|
+
## Node.js / TypeScript SDK
|
|
55
|
+
|
|
56
|
+
A native JavaScript/TypeScript SDK is on the roadmap. Watch the [GitHub repo](https://github.com/ProdMCP-org/ProdMCP) for updates.
|
|
57
|
+
|
|
58
|
+
## License
|
|
59
|
+
|
|
60
|
+
MIT © [ProdMCP-org](https://github.com/ProdMCP-org)
|
package/index.js
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* prodmcp – Production-grade Model Context Protocol (MCP) framework
|
|
3
|
+
*
|
|
4
|
+
* This npm package is a placeholder / name reservation.
|
|
5
|
+
*
|
|
6
|
+
* ProdMCP is primarily a Python framework, available on PyPI:
|
|
7
|
+
* pip install prodmcp
|
|
8
|
+
* https://pypi.org/project/prodmcp
|
|
9
|
+
*
|
|
10
|
+
* Resources:
|
|
11
|
+
* - Docs: https://prodmcp.dev
|
|
12
|
+
* - GitHub: https://github.com/ProdMCP-org/ProdMCP
|
|
13
|
+
* - PyPI: https://pypi.org/project/prodmcp
|
|
14
|
+
*
|
|
15
|
+
* A native Node.js/TypeScript SDK is planned for a future release.
|
|
16
|
+
*/
|
|
17
|
+
|
|
18
|
+
'use strict';
|
|
19
|
+
|
|
20
|
+
module.exports = {
|
|
21
|
+
name: 'prodmcp',
|
|
22
|
+
description: 'Production-grade Model Context Protocol (MCP) framework.',
|
|
23
|
+
pypi: 'https://pypi.org/project/prodmcp',
|
|
24
|
+
docs: 'https://prodmcp.dev',
|
|
25
|
+
github: 'https://github.com/ProdMCP-org/ProdMCP',
|
|
26
|
+
};
|
package/package.json
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "prodmcp",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "ProdMCP – Production-grade Model Context Protocol (MCP) framework. This package is a placeholder. The primary ProdMCP library is available on PyPI: https://pypi.org/project/prodmcp",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"mcp",
|
|
7
|
+
"model-context-protocol",
|
|
8
|
+
"prodmcp",
|
|
9
|
+
"llm",
|
|
10
|
+
"ai",
|
|
11
|
+
"fastapi",
|
|
12
|
+
"openai",
|
|
13
|
+
"anthropic",
|
|
14
|
+
"agent",
|
|
15
|
+
"production"
|
|
16
|
+
],
|
|
17
|
+
"homepage": "https://prodmcp.dev",
|
|
18
|
+
"bugs": {
|
|
19
|
+
"url": "https://github.com/ProdMCP-org/ProdMCP/issues"
|
|
20
|
+
},
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "https://github.com/ProdMCP-org/ProdMCP.git"
|
|
24
|
+
},
|
|
25
|
+
"license": "MIT",
|
|
26
|
+
"author": {
|
|
27
|
+
"name": "ProdMCP-org",
|
|
28
|
+
"url": "https://github.com/ProdMCP-org"
|
|
29
|
+
},
|
|
30
|
+
"main": "index.js",
|
|
31
|
+
"files": [
|
|
32
|
+
"index.js",
|
|
33
|
+
"README.md",
|
|
34
|
+
"LICENSE"
|
|
35
|
+
],
|
|
36
|
+
"engines": {
|
|
37
|
+
"node": ">=14"
|
|
38
|
+
},
|
|
39
|
+
"publishConfig": {
|
|
40
|
+
"access": "public"
|
|
41
|
+
}
|
|
42
|
+
}
|