@@ -7,31 +7,94 @@ Get started fast with mcp-framework ⚡⚡⚡
7
7
## Features
8
8
9
9
- 🛠️ Automatic directory-based discovery and loading for tools, prompts, and resources
10
- - 🏗️ Powerful abstractions
10
+ - 🏗️ Powerful abstractions with full type safety
11
11
- 🚀 Simple server setup and configuration
12
+ - 📦 CLI for rapid development and project scaffolding
12
13
13
- ## Installation
14
+ ## Quick Start
15
+
16
+ ### Using the CLI (Recommended)
17
+
18
+ ``` bash
19
+ # Install the framework globally
20
+ npm install -g mcp-framework
21
+
22
+ # Create a new MCP server project
23
+ mcp create my-mcp-server
24
+
25
+ # Navigate to your project
26
+ cd my-mcp-server
27
+
28
+ # Your server is ready to use!
29
+ ```
30
+
31
+ ### Manual Installation
14
32
15
33
``` bash
16
34
npm install mcp-framework
17
35
```
18
36
19
- ## Quick Start
37
+ ## CLI Usage
20
38
21
- ### 1. Create your MCP server:
39
+ The framework provides a powerful CLI for managing your MCP server projects :
22
40
23
- ``` typescript
24
- import { MCPServer } from " mcp-framework" ;
41
+ ### Project Creation
42
+
43
+ ``` bash
44
+ # Create a new project
45
+ mcp create < your project name here>
46
+ ```
25
47
26
- const server = new MCPServer ();
48
+ ### Adding a Tool
27
49
28
- server .start ().catch ((error ) => {
29
- console .error (" Server failed to start:" , error );
30
- process .exit (1 );
31
- });
50
+ ``` bash
51
+ # Add a new tool
52
+ mcp add tool price-fetcher
32
53
```
33
54
34
- ### 2. Create a Tool:
55
+ ### Adding a Prompt
56
+
57
+ ``` bash
58
+ # Add a new prompt
59
+ mcp add prompt price-analysis
60
+ ```
61
+
62
+ ### Adding a Resource
63
+
64
+ ``` bash
65
+ # Add a new prompt
66
+ mcp add resource market-data
67
+ ```
68
+
69
+ ## Development Workflow
70
+
71
+ 1 . Create your project:
72
+
73
+ ``` bash
74
+ mcp create my-mcp-server
75
+ cd my-mcp-server
76
+ ```
77
+
78
+ 2 . Add tools as needed:
79
+
80
+ ``` bash
81
+ mcp add tool data-fetcher
82
+ mcp add tool data-processor
83
+ mcp add tool report-generator
84
+ ```
85
+
86
+ 3 . Build and run:
87
+ ``` bash
88
+ npm run build
89
+ # or
90
+ npm run watch # for development
91
+ ```
92
+
93
+ ## Components Overview
94
+
95
+ ### 1. Tools (Main Component)
96
+
97
+ Tools are the primary way to extend an LLM's capabilities. Each tool should perform a specific function:
35
98
36
99
``` typescript
37
100
import { MCPTool } from " mcp-framework" ;
@@ -60,7 +123,9 @@ class ExampleTool extends MCPTool<ExampleInput> {
60
123
export default ExampleTool ;
61
124
```
62
125
63
- ### 3. Create a Prompt:
126
+ ### 2. Prompts (Optional)
127
+
128
+ Prompts help structure conversations with Claude:
64
129
65
130
``` typescript
66
131
import { MCPPrompt } from " mcp-framework" ;
@@ -104,7 +169,9 @@ class GreetingPrompt extends MCPPrompt<GreetingInput> {
104
169
export default GreetingPrompt ;
105
170
```
106
171
107
- ### 4. Create a Resource:
172
+ ### 3. Resources (Optional)
173
+
174
+ Resources provide data access capabilities:
108
175
109
176
``` typescript
110
177
import { MCPResource , ResourceContent } from " mcp-framework" ;
@@ -139,11 +206,11 @@ export default ConfigResource;
139
206
```
140
207
your-project/
141
208
├── src/
142
- │ ├── tools/ # Tool implementations
209
+ │ ├── tools/ # Tool implementations (Required)
143
210
│ │ └── ExampleTool.ts
144
- │ ├── prompts/ # Prompt implementations
211
+ │ ├── prompts/ # Prompt implementations (Optional)
145
212
│ │ └── GreetingPrompt.ts
146
- │ ├── resources/ # Resource implementations
213
+ │ ├── resources/ # Resource implementations (Optional)
147
214
│ │ └── ConfigResource.ts
148
215
│ └── index.ts
149
216
├── package.json
@@ -155,8 +222,8 @@ your-project/
155
222
The framework automatically discovers and loads:
156
223
157
224
- Tools from the ` src/tools ` directory
158
- - Prompts from the ` src/prompts ` directory
159
- - Resources from the ` src/resources ` directory
225
+ - Prompts from the ` src/prompts ` directory (if present)
226
+ - Resources from the ` src/resources ` directory (if present)
160
227
161
228
Each feature should be in its own file and export a default class that extends the appropriate base class:
162
229
0 commit comments