Skip to content

Commit 7d0451b

Browse files
committed
feat: rename library from mcpx to simple-mcp for clarity and branding
1 parent aeb7c0a commit 7d0451b

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# mcpx
1+
# Simple MCP
22

33
A simple TypeScript library for creating [MCP](https://modelcontextprotocol.io/) (Model Context Protocol) servers.
44

@@ -12,13 +12,13 @@ A simple TypeScript library for creating [MCP](https://modelcontextprotocol.io/)
1212
## Installation
1313

1414
```bash
15-
npm install mcpx
15+
npm install simple-mcp
1616
```
1717

1818
## Quickstart
1919

2020
```typescript
21-
import { McpServer } from 'mcpx';
21+
import { McpServer } from 'simple-mcp';
2222
import { z } from 'zod';
2323

2424
// Create a server instance
@@ -48,10 +48,10 @@ server.start({ transportType: 'stdio' });
4848

4949
## Examples
5050

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

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
5555

5656
## Contributing
5757

examples/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# mcpx Examples
1+
# simple-mcp Examples
22

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.
44

55
## Available Examples
66

@@ -48,10 +48,10 @@ mcp-inspector
4848

4949
## Creating Your Own Examples
5050

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

5353
```typescript
54-
import { McpServer } from 'mcpx';
54+
import { McpServer } from 'simple-mcp';
5555
import { z } from 'zod';
5656

5757
// Create a server instance

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "mcpx",
2+
"name": "simple-mcp",
33
"version": "0.0.1",
4-
"repository": "https://github.com/ribeirogab/mcpx.git",
4+
"repository": "https://github.com/ribeirogab/simple-mcp.git",
55
"author": "ribeirogab <[email protected]>",
66
"license": "MIT",
77
"description": "A toolkit for building MCP servers",

0 commit comments

Comments
 (0)