Skip to content

Commit 36bbc88

Browse files
committed
feat: remove vibe coder contingency
1 parent 77c8d1b commit 36bbc88

File tree

2 files changed

+32
-1
lines changed

2 files changed

+32
-1
lines changed

.cursor/rules/mcp-framework.mdc

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
description:
3+
globs:
4+
alwaysApply: false
5+
---
6+
We are in the mcp-framework , a typescript framework that allows construction of model context protocol (mcp) servers.
7+
We are implementing the new specification:
8+
<specification>Overview
9+
MCP provides a standardized way for applications to:
10+
11+
Share contextual information with language models
12+
Expose tools and capabilities to AI systems
13+
Build composable integrations and workflows
14+
The protocol uses JSON-RPC 2.0 messages to establish communication between:
15+
16+
Hosts: LLM applications that initiate connections
17+
Clients: Connectors within the host application
18+
Servers: Services that provide context and capabilities
19+
MCP takes some inspiration from the Language Server Protocol, which standardizes how to add support for programming languages across a whole ecosystem of development tools. In a similar way, MCP standardizes how to integrate additional context and tools into the ecosystem of AI applications.
20+
21+
Key Details
22+
Base Protocol
23+
JSON-RPC message format
24+
Stateful connections
25+
Server and client capability negotiation
26+
Features
27+
Servers offer any of the following features to clients:
28+
29+
Resources: Context and data, for the user or the AI model to use
30+
Prompts: Templated messages and workflows for users
31+
Tools: Functions for the AI model to execute</specification>

src/cli/project/create.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export async function createProject(name?: string, options?: { http?: boolean, c
5757
scripts: {
5858
build: "tsc && mcp-build",
5959
watch: "tsc --watch",
60-
start: "npm run build && node dist/index.js"
60+
start: "node dist/index.js"
6161
},
6262
dependencies: {
6363
"mcp-framework": "^0.2.2"

0 commit comments

Comments
 (0)