Skip to content
This repository was archived by the owner on May 21, 2026. It is now read-only.

Commit 9f43c93

Browse files
committed
Merge branch 'feat/mcp-ui-apps' of https://github.com/mcp-use/mcp-use-ts into feat/mcp-ui-apps
2 parents 4bab23c + 641b438 commit 9f43c93

23 files changed

Lines changed: 768 additions & 79 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This is a monorepo containing multiple packages for the MCP-Use ecosystem.
44

55
## Packages
66

7-
- **`mcp-use-ts`** - Core MCP integration library
7+
- **`mcp-use`** - Core MCP integration library
88
- **`@mcp-use/inspector`** - MCP Inspector package for debugging and inspecting MCP servers
99
- **`@mcp-use/cli`** - Command-line interface for MCP
1010
- **`create-mcp-use-app`** - Create new MCP-Use applications with one command
@@ -41,8 +41,8 @@ npm login
4141
#### Option 1: Publish from package directory
4242

4343
```bash
44-
# Publish mcp-use-ts
45-
cd packages/mcp-use-ts
44+
# Publish mcp-use
45+
cd packages/mcp-use
4646
pnpm publish --access public
4747

4848
# Publish inspector
@@ -62,7 +62,7 @@ pnpm publish --access public
6262

6363
```bash
6464
# Publish specific package from root
65-
pnpm --filter mcp-use-ts publish --access public
65+
pnpm --filter mcp-use publish --access public
6666
pnpm --filter @mcp-use/inspector publish --access public
6767
pnpm --filter @mcp-use/cli publish --access public
6868
pnpm --filter create-mcp-use-app publish --access public
@@ -81,7 +81,7 @@ pnpm -r publish --access public
8181

8282
```bash
8383
# Bump version for specific package
84-
pnpm --filter mcp-use-ts version patch
84+
pnpm --filter mcp-use version patch
8585
pnpm --filter @mcp-use/inspector version minor
8686
pnpm --filter @mcp-use/cli version major
8787
```
File renamed without changes.

packages/mcp-use/test-ui/package-lock.json renamed to examples/kanban-app/package-lock.json

Lines changed: 28 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,22 +16,22 @@
1616
],
1717
"main": "dist/server.js",
1818
"scripts": {
19-
"build": "tsc && npm run build:pages",
20-
"build:pages": "tsx scripts/build.mts",
21-
"dev": "concurrently \"tsx src/server.ts\" \"tsx scripts/build.mts --watch\"",
19+
"build": "tsc && mcp-use build",
20+
"dev": "concurrently \"tsx src/server.ts\" \"tsx mcp-use build --watch\"",
2221
"start": "node dist/server.js"
2322
},
2423
"dependencies": {
2524
"cors": "^2.8.5",
2625
"express": "^4.18.0",
27-
"mcp-use": "file:../"
26+
"mcp-use": "workspace:*"
2827
},
2928
"devDependencies": {
3029
"@types/cors": "^2.8.0",
3130
"@types/express": "^4.17.0",
3231
"@types/node": "^20.0.0",
3332
"@types/react": "^18.0.0",
3433
"@types/react-dom": "^18.0.0",
34+
"@mcp-use/cli": "workspace:*",
3535
"concurrently": "^8.0.0",
3636
"esbuild": "^0.23.0",
3737
"globby": "^14.0.2",

packages/mcp-use/test-ui/resources/data-visualization.tsx renamed to examples/kanban-app/resources/data-visualization.tsx

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ import { existsSync, readdirSync } from 'node:fs'
22
import { join } from 'node:path'
33
import cors from 'cors'
44
import express from 'express'
5-
import { create } from '../../dist/index.js'
5+
import { createMCPServer } from 'mcp-use'
66

77
// Create an MCP server with UI support
8-
const mcp = create('ui-mcp-server', {
8+
const mcp = createMCPServer('ui-mcp-server', {
99
version: '1.0.0',
1010
description: 'An MCP server with React UI widgets',
1111
})

0 commit comments

Comments
 (0)