Skip to content
This repository was archived by the owner on Jan 14, 2026. It is now read-only.
Merged
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
6 changes: 6 additions & 0 deletions src/lib/docs/cli/mcp.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ Start an the MCP server:
jsrepo mcp
```

Start an the MCP server for a specific registry:

```sh
jsrepo mcp @ieedan/std
```

Inspect and test the MCP server:

```sh
Expand Down
12 changes: 4 additions & 8 deletions src/lib/docs/map.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,7 @@ const tempMap: Record<string, [TempDoc, TempDoc[]] | [string, TempDoc[]]> = {
children: [
{
title: 'jsrepo.com',
slug: 'jsrepo',
tag: 'New'
slug: 'jsrepo'
},
{
title: 'GitHub',
Expand All @@ -73,8 +72,7 @@ const tempMap: Record<string, [TempDoc, TempDoc[]] | [string, TempDoc[]]> = {
},
{
title: 'MCP Server',
slug: 'mcp',
tag: 'New'
slug: 'mcp'
},
{
title: 'Language Support',
Expand All @@ -97,8 +95,7 @@ const tempMap: Record<string, [TempDoc, TempDoc[]] | [string, TempDoc[]]> = {
'jsrepo.com': [
{
title: 'Introduction',
slug: 'jsrepo-com',
tag: 'New'
slug: 'jsrepo-com'
},
[
{
Expand Down Expand Up @@ -136,8 +133,7 @@ const tempMap: Record<string, [TempDoc, TempDoc[]] | [string, TempDoc[]]> = {
},
{
title: 'mcp',
slug: 'mcp',
tag: 'New'
slug: 'mcp'
},
{
title: 'publish',
Expand Down
13 changes: 13 additions & 0 deletions src/lib/docs/registry/mcp.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,19 @@ Add the following code to your `.cursor/mcp.json` file:
}
```

Optionally, you can specify a registry to use:

```jsonc
{
"mcpServers": {
"jsrepo": {
"command": "npx",
"args": ["jsrepo", "mcp", "@ieedan/std"]
}
}
}
```

## Windsurf Usage

Add the following code to your `.codeium/windsurf/mcp_config.json` file:
Expand Down
Loading