Skip to content

Commit 6d3a83c

Browse files
authored
Merge pull request #6 from QuantGeekDev/feature/cli-create-mcp-server
Feature/cli create mcp server
2 parents 85624c6 + 752024e commit 6d3a83c

12 files changed

+770
-36
lines changed

README.md

+86-19
Original file line numberDiff line numberDiff line change
@@ -7,31 +7,94 @@ Get started fast with mcp-framework ⚡⚡⚡
77
## Features
88

99
- 🛠️ Automatic directory-based discovery and loading for tools, prompts, and resources
10-
- 🏗️ Powerful abstractions
10+
- 🏗️ Powerful abstractions with full type safety
1111
- 🚀 Simple server setup and configuration
12+
- 📦 CLI for rapid development and project scaffolding
1213

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
1432

1533
```bash
1634
npm install mcp-framework
1735
```
1836

19-
## Quick Start
37+
## CLI Usage
2038

21-
### 1. Create your MCP server:
39+
The framework provides a powerful CLI for managing your MCP server projects:
2240

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+
```
2547

26-
const server = new MCPServer();
48+
### Adding a Tool
2749

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
3253
```
3354

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:
3598

3699
```typescript
37100
import { MCPTool } from "mcp-framework";
@@ -60,7 +123,9 @@ class ExampleTool extends MCPTool<ExampleInput> {
60123
export default ExampleTool;
61124
```
62125

63-
### 3. Create a Prompt:
126+
### 2. Prompts (Optional)
127+
128+
Prompts help structure conversations with Claude:
64129

65130
```typescript
66131
import { MCPPrompt } from "mcp-framework";
@@ -104,7 +169,9 @@ class GreetingPrompt extends MCPPrompt<GreetingInput> {
104169
export default GreetingPrompt;
105170
```
106171

107-
### 4. Create a Resource:
172+
### 3. Resources (Optional)
173+
174+
Resources provide data access capabilities:
108175

109176
```typescript
110177
import { MCPResource, ResourceContent } from "mcp-framework";
@@ -139,11 +206,11 @@ export default ConfigResource;
139206
```
140207
your-project/
141208
├── src/
142-
│ ├── tools/ # Tool implementations
209+
│ ├── tools/ # Tool implementations (Required)
143210
│ │ └── ExampleTool.ts
144-
│ ├── prompts/ # Prompt implementations
211+
│ ├── prompts/ # Prompt implementations (Optional)
145212
│ │ └── GreetingPrompt.ts
146-
│ ├── resources/ # Resource implementations
213+
│ ├── resources/ # Resource implementations (Optional)
147214
│ │ └── ConfigResource.ts
148215
│ └── index.ts
149216
├── package.json
@@ -155,8 +222,8 @@ your-project/
155222
The framework automatically discovers and loads:
156223

157224
- 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)
160227

161228
Each feature should be in its own file and export a default class that extends the appropriate base class:
162229

package-lock.json

+28-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mcp-framework",
3-
"version": "0.1.8",
3+
"version": "0.1.9",
44
"description": "Framework for building Model Context Protocol (MCP) servers in Typescript",
55
"type": "module",
66
"author": "Alex Andru <[email protected]>",
@@ -16,7 +16,8 @@
1616
"dist"
1717
],
1818
"bin": {
19-
"mcp-build": "./dist/cli/build.js"
19+
"mcp": "./dist/cli/index.js",
20+
"mcp-build": "./dist/cli/framework/build.js"
2021
},
2122
"scripts": {
2223
"build": "tsc",
@@ -36,6 +37,9 @@
3637
"@modelcontextprotocol/sdk": "^0.6.0"
3738
},
3839
"dependencies": {
40+
"@types/prompts": "^2.4.9",
41+
"commander": "^12.1.0",
42+
"prompts": "^2.4.2",
3943
"zod": "^3.23.8"
4044
},
4145
"devDependencies": {

src/cli/build.ts src/cli/framework/build.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ import { spawnSync } from "child_process";
33
import { readFileSync, writeFileSync } from "fs";
44
import { join } from "path";
55

6+
export function buildFramework() {
7+
runTsc();
8+
addShebang();
9+
console.log("MCP Build complete");
10+
}
11+
612
function runTsc() {
713
const tscPath = join(process.cwd(), "node_modules", ".bin", "tsc");
814
const tsc = spawnSync(tscPath, [], {
@@ -30,9 +36,3 @@ function addShebang() {
3036
process.exit(1);
3137
}
3238
}
33-
34-
runTsc();
35-
36-
addShebang();
37-
38-
console.log("MCP Build complete");

src/cli/index.ts

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
#!/usr/bin/env node
2+
import { Command } from "commander";
3+
import { createProject } from "./project/create.js";
4+
import { addTool } from "./project/add-tool.js";
5+
import { addPrompt } from "./project/add-prompt.js";
6+
import { addResource } from "./project/add-resource.js";
7+
import { buildFramework } from "./framework/build.js";
8+
9+
const program = new Command();
10+
11+
program
12+
.name("mcp")
13+
.description("CLI for managing MCP server projects")
14+
.version("0.1.8");
15+
16+
program
17+
.command("build-framework", { hidden: true })
18+
.description("Build the MCP framework")
19+
.action(buildFramework);
20+
21+
program
22+
.command("create")
23+
.description("Create a new MCP server project")
24+
.argument("[name]", "project name")
25+
.action(createProject);
26+
27+
program
28+
.command("add")
29+
.description("Add a new component to your MCP server")
30+
.addCommand(
31+
new Command("tool")
32+
.description("Add a new tool")
33+
.argument("[name]", "tool name")
34+
.action(addTool)
35+
)
36+
.addCommand(
37+
new Command("prompt")
38+
.description("Add a new prompt")
39+
.argument("[name]", "prompt name")
40+
.action(addPrompt)
41+
)
42+
.addCommand(
43+
new Command("resource")
44+
.description("Add a new resource")
45+
.argument("[name]", "resource name")
46+
.action(addResource)
47+
);
48+
49+
program.parse();

0 commit comments

Comments
 (0)