File tree Expand file tree Collapse file tree 3 files changed +12
-12
lines changed Expand file tree Collapse file tree 3 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 1
- # mcpx
1
+ # Simple MCP
2
2
3
3
A simple TypeScript library for creating [ MCP] ( https://modelcontextprotocol.io/ ) (Model Context Protocol) servers.
4
4
@@ -12,13 +12,13 @@ A simple TypeScript library for creating [MCP](https://modelcontextprotocol.io/)
12
12
## Installation
13
13
14
14
``` bash
15
- npm install mcpx
15
+ npm install simple-mcp
16
16
```
17
17
18
18
## Quickstart
19
19
20
20
``` typescript
21
- import { McpServer } from ' mcpx ' ;
21
+ import { McpServer } from ' simple-mcp ' ;
22
22
import { z } from ' zod' ;
23
23
24
24
// Create a server instance
@@ -48,10 +48,10 @@ server.start({ transportType: 'stdio' });
48
48
49
49
## Examples
50
50
51
- Check out the [ examples directory] ( https://github.com/ribeirogab/mcpx /tree/main/examples ) for more complete examples:
51
+ Check out the [ examples directory] ( https://github.com/ribeirogab/simple-mcp /tree/main/examples ) for more complete examples:
52
52
53
- - [ Greeting Tool] ( https://github.com/ribeirogab/mcpx /tree/main/examples/greet.ts ) - Simple greeting example
54
- - [ Calculator Tool] ( https://github.com/ribeirogab/mcpx /tree/main/examples/calculator.ts ) - Mathematical operations example
53
+ - [ Greeting Tool] ( https://github.com/ribeirogab/simple-mcp /tree/main/examples/greet.ts ) - Simple greeting example
54
+ - [ Calculator Tool] ( https://github.com/ribeirogab/simple-mcp /tree/main/examples/calculator.ts ) - Mathematical operations example
55
55
56
56
## Contributing
57
57
Original file line number Diff line number Diff line change 1
- # mcpx Examples
1
+ # simple-mcp Examples
2
2
3
- This directory contains example implementations using mcpx to create MCP (Model Context Protocol) servers.
3
+ This directory contains example implementations using simple-mcp to create MCP (Model Context Protocol) servers.
4
4
5
5
## Available Examples
6
6
@@ -48,10 +48,10 @@ mcp-inspector
48
48
49
49
## Creating Your Own Examples
50
50
51
- Feel free to create your own examples based on these templates. The basic structure for an MCP server using mcpx is:
51
+ Feel free to create your own examples based on these templates. The basic structure for an MCP server using simple-mcp is:
52
52
53
53
``` typescript
54
- import { McpServer } from ' mcpx ' ;
54
+ import { McpServer } from ' simple-mcp ' ;
55
55
import { z } from ' zod' ;
56
56
57
57
// Create a server instance
Original file line number Diff line number Diff line change 1
1
{
2
- "name" : " mcpx " ,
2
+ "name" : " simple-mcp " ,
3
3
"version" : " 0.0.1" ,
4
- "repository" : " https://github.com/ribeirogab/mcpx .git" ,
4
+ "repository" : " https://github.com/ribeirogab/simple-mcp .git" ,
5
5
"author" :
" ribeirogab <[email protected] >" ,
6
6
"license" : " MIT" ,
7
7
"description" : " A toolkit for building MCP servers" ,
You can’t perform that action at this time.
0 commit comments