@agentic-forge/mcp 1.1.1 → 2.0.0-alpha.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.
Files changed (2) hide show
  1. package/README.md +28 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,28 @@
1
+ # @agentic-forge/mcp
2
+
3
+ > **The Model Context Protocol Gateway for AgentForge.**
4
+
5
+ Integrate your AgentForge agents into any MCP-compliant environment (like Claude Desktop). This package provides the bridge between the standard protocol and the Forge's autonomous intelligence.
6
+
7
+ ## Installation
8
+
9
+ ```bash
10
+ npm install @agentic-forge/mcp
11
+ ```
12
+
13
+ ## Usage
14
+
15
+ You can run the MCP server directly using npx:
16
+
17
+ ```bash
18
+ npx @agentic-forge/mcp
19
+ ```
20
+
21
+ ## Features
22
+ - **Tool Discovery**: Automatically exposes agent capabilities to MCP clients.
23
+ - **Resource Management**: Provides access to the Agent-Forge System of Record data.
24
+ - **Unified Logic**: Powered by the core Python `agentforge.mcp` implementation.
25
+
26
+ ---
27
+
28
+ [Back to Monorepo Root](../../README.md)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentic-forge/mcp",
3
- "version": "1.1.1",
3
+ "version": "2.0.0-alpha.1",
4
4
  "description": "AgentForge MCP — The Model Context Protocol Gateway for Autonomous Intelligence.",
5
5
  "bin": {
6
6
  "agentforge-mcp": "bin/mcp.js"