Skip to content

Commit de7e402

Browse files
committed
fix(*): change semcp to microsoft as part of the organization change
Signed-off-by: Jiaxiao Zhou <duibao55328@gmail.com>
1 parent c641527 commit de7e402

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ We wanted to build an entirely open source tool that enables developers to defin
3535
So what is this project aiming to be?
3636

3737
1. One centralized open-source mcp-server, written in a memory safe, high performance language that embeds a WebAssembly runtime (e.g. [Wasmtime](https://github.com/bytecodealliance/wasmtime) or [hyperlight-wasm](https://github.com/hyperlight-dev/hyperlight-wasm)), acting as a minimal trusted computing base (TCB).
38-
2. `weld` will implement allow/deny lists for file paths, network endpoints, and system calls using capability-based policy like [policy-mcp-rs](https://github.com/semcp/policy-mcp-rs).
38+
2. `weld` will implement allow/deny lists for file paths, network endpoints, and system calls using capability-based policy like [policy-mcp-rs](https://github.com/microsoft/policy-mcp-rs).
3939
3. Untrusted tool code will be distributed as WebAssembly OCI artifacts in OCI registries, and be loaded into the trusted layer upon signature verification. Each tool will have a discrete set of capabilities. For example, tool A needs to read `./data`; not network; tool B needs read/write to `/assets` and outbound HTTP only to `api.company.com:443`.
4040

4141
### What about the developer experience?
@@ -49,7 +49,7 @@ If you are interested in learning more about what programming language supports
4949
### All Platforms (Shell Script)
5050

5151
```bash
52-
curl -fsSL https://raw.githubusercontent.com/semcp/weld-mcp-server/main/install.sh | bash
52+
curl -fsSL https://raw.githubusercontent.com/microsoft/weld-mcp-server/main/install.sh | bash
5353
```
5454

5555
This will detect your platform and install the latest `weld-mcp-server` binary to your `$PATH`.

examples/filesystem-rs/policy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# file system access policy for weld-mcp-server project
2-
# https://github.com/semcp/policy-mcp-rs
2+
# https://github.com/microsoft/policy-mcp-rs
33
version: "1.0"
44
description: "Permission policy for filesystem access in weld-mcp-server"
55
permissions:

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ BLUE='\033[0;34m'
1313
NC='\033[0m' # No Color
1414

1515
# Configuration
16-
REPO="semcp/weld-mcp-server"
16+
REPO="microsoft/weld-mcp-server"
1717
BINARY_NAME="weld-mcp-server"
1818
INSTALL_DIR=""
1919

0 commit comments

Comments
 (0)