Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions .changeset/calm-houses-listen.md

This file was deleted.

10 changes: 0 additions & 10 deletions .changeset/some-bags-tie.md

This file was deleted.

11 changes: 11 additions & 0 deletions packages/create-sei/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @sei-js/create-sei-app

## 1.0.1

### Patch Changes

- 9168186: Improve the `next-template` runtime defaults generated by `create-sei`.

- Add a `prebuild` Biome check and include Biome in template dev dependencies.
- Configure Next.js to allow Sei CDN images and skip ESLint during builds.
- Update provider and shell setup for improved chain/image handling.
- Align template config/docs with current defaults (`.env.example`, `README`, Biome, Tailwind v4 config).

## 1.0.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/create-sei/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sei-js/create-sei",
"version": "1.0.0",
"version": "1.0.1",
"repository": {
"type": "git",
"url": "https://github.com/sei-protocol/sei-js.git",
Expand Down
10 changes: 10 additions & 0 deletions packages/mcp-server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## 0.3.3

### Patch Changes

- bc17ace: Fix session binding and response isolation in the HTTP SSE transport.

- POST handler now validates `sessionId` on every request — rejects missing session IDs (400) and unknown session IDs (404)
- Each POST is routed to the transport instance that owns the matching session ID, preventing cross-client request injection
- Session IDs now use the MCP SDK's `transport.sessionId` rather than `Date.now()`

## 0.3.2

### Patch Changes
Expand Down
21 changes: 18 additions & 3 deletions packages/mcp-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,16 @@
"name": "@sei-js/mcp-server",
"description": "Model Context Protocol (MCP) server for interacting with EVM-compatible networks",
"type": "module",
"version": "0.3.2",
"version": "0.3.3",
"bin": "./bin/mcp-server.js",
"main": "./dist/esm/index.js",
"module": "./dist/esm/index.js",
"files": ["dist/", "bin/", "README.md", "LICENSE"],
"files": [
"dist/",
"bin/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rm -rf dist && tsc",
"start": "node dist/esm/index.js",
Expand Down Expand Up @@ -35,7 +40,17 @@
"viem": "^2.30.5",
"zod": "^3.24.2"
},
"keywords": ["mcp", "model-context-protocol", "evm", "blockchain", "sei", "web3", "smart-contracts", "ai", "agent"],
"keywords": [
"mcp",
"model-context-protocol",
"evm",
"blockchain",
"sei",
"web3",
"smart-contracts",
"ai",
"agent"
],
"author": "@codebycarson",
"license": "MIT",
"engines": {
Expand Down