@rekog/mcp-nest 1.0.4 → 1.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +110 -0
- package/coverage/clover.xml +119 -0
- package/coverage/coverage-final.json +9 -0
- package/coverage/lcov-report/base.css +224 -0
- package/coverage/lcov-report/block-navigation.js +87 -0
- package/coverage/lcov-report/favicon.png +0 -0
- package/coverage/lcov-report/index.html +176 -0
- package/coverage/lcov-report/prettify.css +1 -0
- package/coverage/lcov-report/prettify.js +2 -0
- package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
- package/coverage/lcov-report/sorter.js +196 -0
- package/coverage/lcov.info +200 -0
- package/dist/__tests__/calculator.tool.spec.d.ts +2 -0
- package/dist/__tests__/calculator.tool.spec.d.ts.map +1 -0
- package/dist/__tests__/calculator.tool.spec.js +42 -0
- package/dist/__tests__/calculator.tool.spec.js.map +1 -0
- package/dist/__tests__/mcp-tools.discovery.spec.d.ts +2 -0
- package/dist/__tests__/mcp-tools.discovery.spec.d.ts.map +1 -0
- package/dist/__tests__/mcp-tools.discovery.spec.js +61 -0
- package/dist/__tests__/mcp-tools.discovery.spec.js.map +1 -0
- package/dist/__tests__/mcp.module.spec.d.ts +2 -0
- package/dist/__tests__/mcp.module.spec.d.ts.map +1 -0
- package/dist/__tests__/mcp.module.spec.js +106 -0
- package/dist/__tests__/mcp.module.spec.js.map +1 -0
- package/dist/tests/mcp.e2e.spec.d.ts +12 -0
- package/dist/tests/mcp.e2e.spec.d.ts.map +1 -0
- package/dist/tests/mcp.e2e.spec.js +99 -0
- package/dist/tests/mcp.e2e.spec.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/jest.config.js +7 -0
- package/package.json +9 -3
- package/tests/mcp.e2e.spec.ts +96 -0
package/README.md
ADDED
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
# NestJS MCP Server Module
|
|
2
|
+
|
|
3
|
+
A NestJS module for exposing your services as an MCP (Model Context Protocol) server with Server-Sent Events (SSE) transport. This package simplifies exposing tools that can be discovered and executed by clients via SSE.
|
|
4
|
+
|
|
5
|
+
## Features
|
|
6
|
+
|
|
7
|
+
- **SSE Transport**: Built-in `/sse` endpoint for streaming and `/messages` for handling tool execution
|
|
8
|
+
- **Tool Discovery**: Automatically discover and register tools using decorators
|
|
9
|
+
|
|
10
|
+
## Installation
|
|
11
|
+
|
|
12
|
+
```bash
|
|
13
|
+
npm install @rekog/mcp-nest reflect-metadata @modelcontextprotocol/sdk zod
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
## Quick Start
|
|
17
|
+
|
|
18
|
+
### 1. Import Module
|
|
19
|
+
|
|
20
|
+
```typescript
|
|
21
|
+
// app.module.ts
|
|
22
|
+
import { Module } from '@nestjs/common';
|
|
23
|
+
import { McpModule } from '@your-package-name/mcp';
|
|
24
|
+
import { GreetingTool } from './greeting.tool';
|
|
25
|
+
|
|
26
|
+
@Module({
|
|
27
|
+
imports: [
|
|
28
|
+
McpModule.forRoot({
|
|
29
|
+
name: 'my-mcp-server',
|
|
30
|
+
version: '1.0.0',
|
|
31
|
+
capabilities: { /* ... */ }
|
|
32
|
+
})
|
|
33
|
+
],
|
|
34
|
+
providers: [GreetingTool]
|
|
35
|
+
})
|
|
36
|
+
export class AppModule {}
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
### 2. Define Tools
|
|
40
|
+
|
|
41
|
+
```typescript
|
|
42
|
+
// greeting.tool.ts
|
|
43
|
+
import { Injectable } from '@nestjs/common';
|
|
44
|
+
import { Tool } from '@your-package-name/mcp';
|
|
45
|
+
import { z } from 'zod';
|
|
46
|
+
|
|
47
|
+
@Injectable()
|
|
48
|
+
export class GreetingTool {
|
|
49
|
+
@Tool('hello', 'Returns greeting', {
|
|
50
|
+
name: z.string().default('World')
|
|
51
|
+
})
|
|
52
|
+
greet({ name }: { name: string }) {
|
|
53
|
+
return {
|
|
54
|
+
content: [{ type: 'text', text: `Hello ${name}!` }]
|
|
55
|
+
};
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
### 3. Start Server
|
|
61
|
+
|
|
62
|
+
```typescript
|
|
63
|
+
import { NestFactory } from '@nestjs/core';
|
|
64
|
+
import { AppModule } from './app.module';
|
|
65
|
+
|
|
66
|
+
async function bootstrap() {
|
|
67
|
+
const app = await NestFactory.create(AppModule);
|
|
68
|
+
await app.listen(3000);
|
|
69
|
+
}
|
|
70
|
+
bootstrap();
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
## Client Connection
|
|
74
|
+
|
|
75
|
+
Clients can connect using the MCP SDK:
|
|
76
|
+
|
|
77
|
+
```typescript
|
|
78
|
+
import { Client } from '@modelcontextprotocol/sdk/client';
|
|
79
|
+
import { SSEClientTransport } from '@modelcontextprotocol/sdk/client/sse';
|
|
80
|
+
|
|
81
|
+
const client = new Client(
|
|
82
|
+
{ name: 'client-name', version: '1.0.0' },
|
|
83
|
+
{ capabilities: {} }
|
|
84
|
+
);
|
|
85
|
+
|
|
86
|
+
await client.connect(
|
|
87
|
+
new SSEClientTransport(new URL('http://localhost:3000/sse'))
|
|
88
|
+
);
|
|
89
|
+
|
|
90
|
+
// Execute tool
|
|
91
|
+
const result = await client.callTool({
|
|
92
|
+
name: 'hello',
|
|
93
|
+
arguments: { name: 'World' }
|
|
94
|
+
});
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
## API Endpoints
|
|
98
|
+
|
|
99
|
+
- `GET /sse`: SSE connection endpoint
|
|
100
|
+
- `POST /messages`: Tool execution endpoint
|
|
101
|
+
|
|
102
|
+
## Configuration Reference
|
|
103
|
+
|
|
104
|
+
### `McpOptions`
|
|
105
|
+
|
|
106
|
+
| Property | Type | Description |
|
|
107
|
+
|----------------|---------------------------|------------------------------|
|
|
108
|
+
| `name` | string | Server name |
|
|
109
|
+
| `version` | string | Server version |
|
|
110
|
+
| `capabilities` | Record<string, any> | Server capabilities |
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<coverage generated="1737932553168" clover="3.2.0">
|
|
3
|
+
<project timestamp="1737932553168" name="All files">
|
|
4
|
+
<metrics statements="74" coveredstatements="56" conditionals="18" coveredconditionals="2" methods="18" coveredmethods="13" elements="110" coveredelements="71" complexity="0" loc="74" ncloc="74" packages="5" files="8" classes="8"/>
|
|
5
|
+
<package name="src">
|
|
6
|
+
<metrics statements="31" coveredstatements="14" conditionals="16" coveredconditionals="1" methods="7" coveredmethods="2"/>
|
|
7
|
+
<file name="index.ts" path="/home/rinor/explore/nest-mcp/src/index.ts">
|
|
8
|
+
<metrics statements="3" coveredstatements="3" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
9
|
+
<line num="1" count="1" type="stmt"/>
|
|
10
|
+
<line num="2" count="1" type="stmt"/>
|
|
11
|
+
<line num="3" count="1" type="stmt"/>
|
|
12
|
+
</file>
|
|
13
|
+
<file name="mcp.module.ts" path="/home/rinor/explore/nest-mcp/src/mcp.module.ts">
|
|
14
|
+
<metrics statements="28" coveredstatements="11" conditionals="16" coveredconditionals="1" methods="7" coveredmethods="2"/>
|
|
15
|
+
<line num="1" count="2" type="stmt"/>
|
|
16
|
+
<line num="2" count="2" type="stmt"/>
|
|
17
|
+
<line num="3" count="2" type="stmt"/>
|
|
18
|
+
<line num="4" count="2" type="stmt"/>
|
|
19
|
+
<line num="5" count="2" type="stmt"/>
|
|
20
|
+
<line num="6" count="2" type="stmt"/>
|
|
21
|
+
<line num="10" count="2" type="stmt"/>
|
|
22
|
+
<line num="12" count="2" type="stmt"/>
|
|
23
|
+
<line num="24" count="2" type="stmt"/>
|
|
24
|
+
<line num="28" count="2" type="stmt"/>
|
|
25
|
+
<line num="29" count="2" type="stmt"/>
|
|
26
|
+
<line num="40" count="0" type="stmt"/>
|
|
27
|
+
<line num="42" count="0" type="stmt"/>
|
|
28
|
+
<line num="52" count="0" type="stmt"/>
|
|
29
|
+
<line num="56" count="0" type="stmt"/>
|
|
30
|
+
<line num="57" count="0" type="stmt"/>
|
|
31
|
+
<line num="68" count="0" type="cond" truecount="0" falsecount="3"/>
|
|
32
|
+
<line num="69" count="0" type="stmt"/>
|
|
33
|
+
<line num="72" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
34
|
+
<line num="73" count="0" type="stmt"/>
|
|
35
|
+
<line num="76" count="0" type="stmt"/>
|
|
36
|
+
<line num="86" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
37
|
+
<line num="87" count="0" type="stmt"/>
|
|
38
|
+
<line num="94" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
39
|
+
<line num="95" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
40
|
+
<line num="96" count="0" type="stmt"/>
|
|
41
|
+
<line num="99" count="0" type="stmt"/>
|
|
42
|
+
<line num="102" count="0" type="stmt"/>
|
|
43
|
+
</file>
|
|
44
|
+
</package>
|
|
45
|
+
<package name="src.controllers">
|
|
46
|
+
<metrics statements="13" coveredstatements="12" conditionals="1" coveredconditionals="0" methods="3" coveredmethods="3"/>
|
|
47
|
+
<file name="sse.controller.ts" path="/home/rinor/explore/nest-mcp/src/controllers/sse.controller.ts">
|
|
48
|
+
<metrics statements="13" coveredstatements="12" conditionals="1" coveredconditionals="0" methods="3" coveredmethods="3"/>
|
|
49
|
+
<line num="1" count="2" type="stmt"/>
|
|
50
|
+
<line num="12" count="2" type="stmt"/>
|
|
51
|
+
<line num="13" count="2" type="stmt"/>
|
|
52
|
+
<line num="21" count="2" type="stmt"/>
|
|
53
|
+
<line num="22" count="2" type="stmt"/>
|
|
54
|
+
<line num="24" count="2" type="stmt"/>
|
|
55
|
+
<line num="27" count="2" type="stmt"/>
|
|
56
|
+
<line num="28" count="1" type="stmt"/>
|
|
57
|
+
<line num="30" count="1" type="stmt"/>
|
|
58
|
+
<line num="34" count="2" type="stmt"/>
|
|
59
|
+
<line num="39" count="4" type="cond" truecount="0" falsecount="1"/>
|
|
60
|
+
<line num="40" count="0" type="stmt"/>
|
|
61
|
+
<line num="43" count="4" type="stmt"/>
|
|
62
|
+
</file>
|
|
63
|
+
</package>
|
|
64
|
+
<package name="src.decorators">
|
|
65
|
+
<metrics statements="8" coveredstatements="8" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
66
|
+
<file name="constants.ts" path="/home/rinor/explore/nest-mcp/src/decorators/constants.ts">
|
|
67
|
+
<metrics statements="1" coveredstatements="1" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
68
|
+
<line num="1" count="2" type="stmt"/>
|
|
69
|
+
</file>
|
|
70
|
+
<file name="index.ts" path="/home/rinor/explore/nest-mcp/src/decorators/index.ts">
|
|
71
|
+
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
72
|
+
<line num="1" count="2" type="stmt"/>
|
|
73
|
+
<line num="2" count="2" type="stmt"/>
|
|
74
|
+
</file>
|
|
75
|
+
<file name="tool.decorator.ts" path="/home/rinor/explore/nest-mcp/src/decorators/tool.decorator.ts">
|
|
76
|
+
<metrics statements="5" coveredstatements="5" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
77
|
+
<line num="1" count="2" type="stmt"/>
|
|
78
|
+
<line num="2" count="2" type="stmt"/>
|
|
79
|
+
<line num="10" count="2" type="stmt"/>
|
|
80
|
+
<line num="11" count="2" type="stmt"/>
|
|
81
|
+
<line num="12" count="2" type="stmt"/>
|
|
82
|
+
</file>
|
|
83
|
+
</package>
|
|
84
|
+
<package name="src.interfaces">
|
|
85
|
+
<metrics statements="1" coveredstatements="1" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
86
|
+
<file name="index.ts" path="/home/rinor/explore/nest-mcp/src/interfaces/index.ts">
|
|
87
|
+
<metrics statements="1" coveredstatements="1" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
88
|
+
<line num="1" count="1" type="stmt"/>
|
|
89
|
+
</file>
|
|
90
|
+
</package>
|
|
91
|
+
<package name="src.services">
|
|
92
|
+
<metrics statements="21" coveredstatements="21" conditionals="1" coveredconditionals="1" methods="7" coveredmethods="7"/>
|
|
93
|
+
<file name="mcp-tools.discovery.ts" path="/home/rinor/explore/nest-mcp/src/services/mcp-tools.discovery.ts">
|
|
94
|
+
<metrics statements="21" coveredstatements="21" conditionals="1" coveredconditionals="1" methods="7" coveredmethods="7"/>
|
|
95
|
+
<line num="1" count="2" type="stmt"/>
|
|
96
|
+
<line num="2" count="2" type="stmt"/>
|
|
97
|
+
<line num="4" count="2" type="stmt"/>
|
|
98
|
+
<line num="7" count="2" type="stmt"/>
|
|
99
|
+
<line num="9" count="2" type="stmt"/>
|
|
100
|
+
<line num="10" count="2" type="stmt"/>
|
|
101
|
+
<line num="14" count="2" type="stmt"/>
|
|
102
|
+
<line num="15" count="2" type="stmt"/>
|
|
103
|
+
<line num="16" count="2" type="stmt"/>
|
|
104
|
+
<line num="17" count="56" type="stmt"/>
|
|
105
|
+
<line num="18" count="50" type="stmt"/>
|
|
106
|
+
<line num="20" count="2" type="stmt"/>
|
|
107
|
+
<line num="21" count="50" type="stmt"/>
|
|
108
|
+
<line num="22" count="392" type="stmt"/>
|
|
109
|
+
<line num="23" count="392" type="stmt"/>
|
|
110
|
+
<line num="24" count="392" type="cond" truecount="1" falsecount="0"/>
|
|
111
|
+
<line num="25" count="390" type="stmt"/>
|
|
112
|
+
<line num="28" count="2" type="stmt"/>
|
|
113
|
+
<line num="29" count="2" type="stmt"/>
|
|
114
|
+
<line num="30" count="2" type="stmt"/>
|
|
115
|
+
<line num="34" count="1" type="stmt"/>
|
|
116
|
+
</file>
|
|
117
|
+
</package>
|
|
118
|
+
</project>
|
|
119
|
+
</coverage>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{"/home/rinor/explore/nest-mcp/src/index.ts": {"path":"/home/rinor/explore/nest-mcp/src/index.ts","statementMap":{"0":{"start":{"line":1,"column":0},"end":{"line":1,"column":29}},"1":{"start":{"line":2,"column":0},"end":{"line":2,"column":29}},"2":{"start":{"line":3,"column":0},"end":{"line":3,"column":29}}},"fnMap":{},"branchMap":{},"s":{"0":1,"1":1,"2":1},"f":{},"b":{}}
|
|
2
|
+
,"/home/rinor/explore/nest-mcp/src/mcp.module.ts": {"path":"/home/rinor/explore/nest-mcp/src/mcp.module.ts","statementMap":{"0":{"start":{"line":1,"column":0},"end":{"line":1,"column":26}},"1":{"start":{"line":2,"column":0},"end":{"line":2,"column":65}},"2":{"start":{"line":3,"column":0},"end":{"line":3,"column":47}},"3":{"start":{"line":4,"column":0},"end":{"line":4,"column":67}},"4":{"start":{"line":5,"column":0},"end":{"line":5,"column":61}},"5":{"start":{"line":6,"column":0},"end":{"line":6,"column":68}},"6":{"start":{"line":10,"column":22},"end":{"line":107,"column":null}},"7":{"start":{"line":12,"column":4},"end":{"line":36,"column":6}},"8":{"start":{"line":24,"column":27},"end":{"line":26,"column":null}},"9":{"start":{"line":28,"column":12},"end":{"line":28,"column":49}},"10":{"start":{"line":29,"column":12},"end":{"line":29,"column":26}},"11":{"start":{"line":40,"column":34},"end":{"line":40,"column":68}},"12":{"start":{"line":42,"column":4},"end":{"line":63,"column":6}},"13":{"start":{"line":52,"column":27},"end":{"line":54,"column":null}},"14":{"start":{"line":56,"column":12},"end":{"line":56,"column":49}},"15":{"start":{"line":57,"column":12},"end":{"line":57,"column":26}},"16":{"start":{"line":68,"column":4},"end":{"line":70,"column":5}},"17":{"start":{"line":69,"column":6},"end":{"line":69,"column":56}},"18":{"start":{"line":72,"column":4},"end":{"line":74,"column":5}},"19":{"start":{"line":73,"column":6},"end":{"line":73,"column":91}},"20":{"start":{"line":76,"column":4},"end":{"line":82,"column":6}},"21":{"start":{"line":86,"column":4},"end":{"line":92,"column":5}},"22":{"start":{"line":87,"column":6},"end":{"line":91,"column":8}},"23":{"start":{"line":94,"column":27},"end":{"line":94,"column":66}},"24":{"start":{"line":95,"column":4},"end":{"line":97,"column":5}},"25":{"start":{"line":96,"column":6},"end":{"line":96,"column":98}},"26":{"start":{"line":99,"column":4},"end":{"line":104,"column":6}},"27":{"start":{"line":102,"column":8},"end":{"line":102,"column":47}},"28":{"start":{"line":10,"column":13},"end":{"line":10,"column":22}},"29":{"start":{"line":10,"column":13},"end":{"line":107,"column":null}}},"fnMap":{"0":{"name":"(anonymous_1)","decl":{"start":{"line":11,"column":2},"end":{"line":11,"column":8}},"loc":{"start":{"line":11,"column":36},"end":{"line":37,"column":3}}},"1":{"name":"(anonymous_2)","decl":{"start":{"line":23,"column":22},"end":{"line":23,"column":23}},"loc":{"start":{"line":23,"column":84},"end":{"line":30,"column":11}}},"2":{"name":"(anonymous_3)","decl":{"start":{"line":39,"column":2},"end":{"line":39,"column":8}},"loc":{"start":{"line":39,"column":46},"end":{"line":64,"column":3}}},"3":{"name":"(anonymous_4)","decl":{"start":{"line":51,"column":22},"end":{"line":51,"column":23}},"loc":{"start":{"line":51,"column":84},"end":{"line":58,"column":11}}},"4":{"name":"(anonymous_5)","decl":{"start":{"line":67,"column":10},"end":{"line":67,"column":16}},"loc":{"start":{"line":67,"column":62},"end":{"line":83,"column":3}}},"5":{"name":"(anonymous_6)","decl":{"start":{"line":85,"column":10},"end":{"line":85,"column":16}},"loc":{"start":{"line":85,"column":68},"end":{"line":105,"column":3}}},"6":{"name":"(anonymous_7)","decl":{"start":{"line":101,"column":18},"end":{"line":101,"column":23}},"loc":{"start":{"line":102,"column":8},"end":{"line":102,"column":47}}}},"branchMap":{"0":{"loc":{"start":{"line":26,"column":30},"end":{"line":26,"column":70}},"type":"binary-expr","locations":[{"start":{"line":26,"column":30},"end":{"line":26,"column":53}},{"start":{"line":26,"column":57},"end":{"line":26,"column":70}}]},"1":{"loc":{"start":{"line":44,"column":20},"end":{"line":44,"column":41}},"type":"binary-expr","locations":[{"start":{"line":44,"column":20},"end":{"line":44,"column":35}},{"start":{"line":44,"column":39},"end":{"line":44,"column":41}}]},"2":{"loc":{"start":{"line":54,"column":30},"end":{"line":54,"column":70}},"type":"binary-expr","locations":[{"start":{"line":54,"column":30},"end":{"line":54,"column":53}},{"start":{"line":54,"column":57},"end":{"line":54,"column":70}}]},"3":{"loc":{"start":{"line":68,"column":4},"end":{"line":70,"column":5}},"type":"if","locations":[{"start":{"line":68,"column":4},"end":{"line":70,"column":5}}]},"4":{"loc":{"start":{"line":68,"column":8},"end":{"line":68,"column":49}},"type":"binary-expr","locations":[{"start":{"line":68,"column":8},"end":{"line":68,"column":27}},{"start":{"line":68,"column":31},"end":{"line":68,"column":49}}]},"5":{"loc":{"start":{"line":72,"column":4},"end":{"line":74,"column":5}},"type":"if","locations":[{"start":{"line":72,"column":4},"end":{"line":74,"column":5}}]},"6":{"loc":{"start":{"line":86,"column":4},"end":{"line":92,"column":5}},"type":"if","locations":[{"start":{"line":86,"column":4},"end":{"line":92,"column":5}}]},"7":{"loc":{"start":{"line":90,"column":16},"end":{"line":90,"column":36}},"type":"binary-expr","locations":[{"start":{"line":90,"column":16},"end":{"line":90,"column":30}},{"start":{"line":90,"column":34},"end":{"line":90,"column":36}}]},"8":{"loc":{"start":{"line":94,"column":27},"end":{"line":94,"column":66}},"type":"binary-expr","locations":[{"start":{"line":94,"column":27},"end":{"line":94,"column":46}},{"start":{"line":94,"column":50},"end":{"line":94,"column":66}}]},"9":{"loc":{"start":{"line":95,"column":4},"end":{"line":97,"column":5}},"type":"if","locations":[{"start":{"line":95,"column":4},"end":{"line":97,"column":5}}]}},"s":{"0":2,"1":2,"2":2,"3":2,"4":2,"5":2,"6":2,"7":2,"8":2,"9":2,"10":2,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":2,"29":2},"f":{"0":2,"1":2,"2":0,"3":0,"4":0,"5":0,"6":0},"b":{"0":[2,0],"1":[0,0],"2":[0,0],"3":[0],"4":[0,0],"5":[0],"6":[0],"7":[0,0],"8":[0,0],"9":[0]}}
|
|
3
|
+
,"/home/rinor/explore/nest-mcp/src/controllers/sse.controller.ts": {"path":"/home/rinor/explore/nest-mcp/src/controllers/sse.controller.ts","statementMap":{"0":{"start":{"line":1,"column":0},"end":{"line":1,"column":null}},"1":{"start":{"line":12,"column":0},"end":{"line":12,"column":68}},"2":{"start":{"line":13,"column":0},"end":{"line":13,"column":77}},"3":{"start":{"line":21,"column":7},"end":{"line":45,"column":null}},"4":{"start":{"line":24,"column":53},"end":{"line":24,"column":64}},"5":{"start":{"line":22,"column":10},"end":{"line":22,"column":54}},"6":{"start":{"line":28,"column":4},"end":{"line":28,"column":62}},"7":{"start":{"line":30,"column":4},"end":{"line":30,"column":49}},"8":{"start":{"line":39,"column":4},"end":{"line":41,"column":5}},"9":{"start":{"line":40,"column":6},"end":{"line":40,"column":62}},"10":{"start":{"line":43,"column":4},"end":{"line":43,"column":59}},"11":{"start":{"line":21,"column":13},"end":{"line":21,"column":26}},"12":{"start":{"line":27,"column":8},"end":{"line":31,"column":null}},"13":{"start":{"line":34,"column":8},"end":{"line":44,"column":null}},"14":{"start":{"line":21,"column":13},"end":{"line":45,"column":null}}},"fnMap":{"0":{"name":"(anonymous_4)","decl":{"start":{"line":24,"column":2},"end":{"line":24,"column":15}},"loc":{"start":{"line":24,"column":73},"end":{"line":24,"column":77}}},"1":{"name":"(anonymous_5)","decl":{"start":{"line":27,"column":2},"end":{"line":27,"column":7}},"loc":{"start":{"line":27,"column":32},"end":{"line":31,"column":3}}},"2":{"name":"(anonymous_6)","decl":{"start":{"line":34,"column":2},"end":{"line":34,"column":7}},"loc":{"start":{"line":37,"column":25},"end":{"line":44,"column":3}}}},"branchMap":{"0":{"loc":{"start":{"line":39,"column":4},"end":{"line":41,"column":5}},"type":"if","locations":[{"start":{"line":39,"column":4},"end":{"line":41,"column":5}}]}},"s":{"0":2,"1":2,"2":2,"3":2,"4":2,"5":2,"6":1,"7":1,"8":4,"9":0,"10":4,"11":2,"12":2,"13":2,"14":2},"f":{"0":2,"1":1,"2":4},"b":{"0":[0]}}
|
|
4
|
+
,"/home/rinor/explore/nest-mcp/src/decorators/constants.ts": {"path":"/home/rinor/explore/nest-mcp/src/decorators/constants.ts","statementMap":{"0":{"start":{"line":1,"column":13},"end":{"line":1,"column":48}}},"fnMap":{},"branchMap":{},"s":{"0":2},"f":{},"b":{}}
|
|
5
|
+
,"/home/rinor/explore/nest-mcp/src/decorators/index.ts": {"path":"/home/rinor/explore/nest-mcp/src/decorators/index.ts","statementMap":{"0":{"start":{"line":1,"column":0},"end":{"line":1,"column":33}},"1":{"start":{"line":2,"column":0},"end":{"line":2,"column":28}}},"fnMap":{},"branchMap":{},"s":{"0":2,"1":2},"f":{},"b":{}}
|
|
6
|
+
,"/home/rinor/explore/nest-mcp/src/decorators/tool.decorator.ts": {"path":"/home/rinor/explore/nest-mcp/src/decorators/tool.decorator.ts","statementMap":{"0":{"start":{"line":1,"column":0},"end":{"line":1,"column":45}},"1":{"start":{"line":2,"column":0},"end":{"line":2,"column":52}},"2":{"start":{"line":10,"column":20},"end":{"line":13,"column":1}},"3":{"start":{"line":11,"column":2},"end":{"line":11,"column":55}},"4":{"start":{"line":12,"column":2},"end":{"line":12,"column":75}},"5":{"start":{"line":10,"column":13},"end":{"line":10,"column":20}}},"fnMap":{"0":{"name":"(anonymous_0)","decl":{"start":{"line":10,"column":20},"end":{"line":10,"column":21}},"loc":{"start":{"line":10,"column":89},"end":{"line":13,"column":1}}}},"branchMap":{},"s":{"0":2,"1":2,"2":2,"3":2,"4":2,"5":2},"f":{"0":2},"b":{}}
|
|
7
|
+
,"/home/rinor/explore/nest-mcp/src/interfaces/index.ts": {"path":"/home/rinor/explore/nest-mcp/src/interfaces/index.ts","statementMap":{"0":{"start":{"line":1,"column":0},"end":{"line":1,"column":40}}},"fnMap":{},"branchMap":{},"s":{"0":1},"f":{},"b":{}}
|
|
8
|
+
,"/home/rinor/explore/nest-mcp/src/services/mcp-tools.discovery.ts": {"path":"/home/rinor/explore/nest-mcp/src/services/mcp-tools.discovery.ts","statementMap":{"0":{"start":{"line":1,"column":0},"end":{"line":1,"column":65}},"1":{"start":{"line":2,"column":0},"end":{"line":2,"column":44}},"2":{"start":{"line":4,"column":0},"end":{"line":4,"column":54}},"3":{"start":{"line":7,"column":7},"end":{"line":39,"column":null}},"4":{"start":{"line":9,"column":21},"end":{"line":9,"column":32}},"5":{"start":{"line":10,"column":21},"end":{"line":10,"column":38}},"6":{"start":{"line":14,"column":22},"end":{"line":14,"column":51}},"7":{"start":{"line":15,"column":24},"end":{"line":15,"column":55}},"8":{"start":{"line":16,"column":25},"end":{"line":18,"column":41}},"9":{"start":{"line":17,"column":27},"end":{"line":17,"column":43}},"10":{"start":{"line":18,"column":24},"end":{"line":18,"column":40}},"11":{"start":{"line":20,"column":4},"end":{"line":37,"column":7}},"12":{"start":{"line":21,"column":6},"end":{"line":36,"column":9}},"13":{"start":{"line":22,"column":26},"end":{"line":22,"column":42}},"14":{"start":{"line":23,"column":31},"end":{"line":23,"column":68}},"15":{"start":{"line":24,"column":8},"end":{"line":26,"column":9}},"16":{"start":{"line":25,"column":10},"end":{"line":25,"column":17}},"17":{"start":{"line":28,"column":25},"end":{"line":28,"column":78}},"18":{"start":{"line":29,"column":8},"end":{"line":29,"column":64}},"19":{"start":{"line":30,"column":8},"end":{"line":35,"column":10}},"20":{"start":{"line":34,"column":23},"end":{"line":34,"column":61}},"21":{"start":{"line":7,"column":13},"end":{"line":7,"column":30}},"22":{"start":{"line":7,"column":13},"end":{"line":39,"column":null}}},"fnMap":{"0":{"name":"(anonymous_2)","decl":{"start":{"line":8,"column":2},"end":{"line":8,"column":null}},"loc":{"start":{"line":10,"column":53},"end":{"line":11,"column":6}}},"1":{"name":"(anonymous_3)","decl":{"start":{"line":13,"column":2},"end":{"line":13,"column":15}},"loc":{"start":{"line":13,"column":36},"end":{"line":38,"column":3}}},"2":{"name":"(anonymous_4)","decl":{"start":{"line":17,"column":14},"end":{"line":17,"column":15}},"loc":{"start":{"line":17,"column":27},"end":{"line":17,"column":43}}},"3":{"name":"(anonymous_5)","decl":{"start":{"line":18,"column":11},"end":{"line":18,"column":12}},"loc":{"start":{"line":18,"column":24},"end":{"line":18,"column":40}}},"4":{"name":"(anonymous_6)","decl":{"start":{"line":20,"column":25},"end":{"line":20,"column":26}},"loc":{"start":{"line":20,"column":38},"end":{"line":37,"column":5}}},"5":{"name":"(anonymous_7)","decl":{"start":{"line":21,"column":63},"end":{"line":21,"column":64}},"loc":{"start":{"line":21,"column":74},"end":{"line":36,"column":7}}},"6":{"name":"(anonymous_8)","decl":{"start":{"line":34,"column":10},"end":{"line":34,"column":11}},"loc":{"start":{"line":34,"column":23},"end":{"line":34,"column":61}}}},"branchMap":{"0":{"loc":{"start":{"line":24,"column":8},"end":{"line":26,"column":9}},"type":"if","locations":[{"start":{"line":24,"column":8},"end":{"line":26,"column":9}}]}},"s":{"0":2,"1":2,"2":2,"3":2,"4":2,"5":2,"6":2,"7":2,"8":2,"9":56,"10":50,"11":2,"12":50,"13":392,"14":392,"15":392,"16":390,"17":2,"18":2,"19":2,"20":1,"21":2,"22":2},"f":{"0":2,"1":2,"2":56,"3":50,"4":50,"5":392,"6":1},"b":{"0":[390]}}
|
|
9
|
+
}
|
|
@@ -0,0 +1,224 @@
|
|
|
1
|
+
body, html {
|
|
2
|
+
margin:0; padding: 0;
|
|
3
|
+
height: 100%;
|
|
4
|
+
}
|
|
5
|
+
body {
|
|
6
|
+
font-family: Helvetica Neue, Helvetica, Arial;
|
|
7
|
+
font-size: 14px;
|
|
8
|
+
color:#333;
|
|
9
|
+
}
|
|
10
|
+
.small { font-size: 12px; }
|
|
11
|
+
*, *:after, *:before {
|
|
12
|
+
-webkit-box-sizing:border-box;
|
|
13
|
+
-moz-box-sizing:border-box;
|
|
14
|
+
box-sizing:border-box;
|
|
15
|
+
}
|
|
16
|
+
h1 { font-size: 20px; margin: 0;}
|
|
17
|
+
h2 { font-size: 14px; }
|
|
18
|
+
pre {
|
|
19
|
+
font: 12px/1.4 Consolas, "Liberation Mono", Menlo, Courier, monospace;
|
|
20
|
+
margin: 0;
|
|
21
|
+
padding: 0;
|
|
22
|
+
-moz-tab-size: 2;
|
|
23
|
+
-o-tab-size: 2;
|
|
24
|
+
tab-size: 2;
|
|
25
|
+
}
|
|
26
|
+
a { color:#0074D9; text-decoration:none; }
|
|
27
|
+
a:hover { text-decoration:underline; }
|
|
28
|
+
.strong { font-weight: bold; }
|
|
29
|
+
.space-top1 { padding: 10px 0 0 0; }
|
|
30
|
+
.pad2y { padding: 20px 0; }
|
|
31
|
+
.pad1y { padding: 10px 0; }
|
|
32
|
+
.pad2x { padding: 0 20px; }
|
|
33
|
+
.pad2 { padding: 20px; }
|
|
34
|
+
.pad1 { padding: 10px; }
|
|
35
|
+
.space-left2 { padding-left:55px; }
|
|
36
|
+
.space-right2 { padding-right:20px; }
|
|
37
|
+
.center { text-align:center; }
|
|
38
|
+
.clearfix { display:block; }
|
|
39
|
+
.clearfix:after {
|
|
40
|
+
content:'';
|
|
41
|
+
display:block;
|
|
42
|
+
height:0;
|
|
43
|
+
clear:both;
|
|
44
|
+
visibility:hidden;
|
|
45
|
+
}
|
|
46
|
+
.fl { float: left; }
|
|
47
|
+
@media only screen and (max-width:640px) {
|
|
48
|
+
.col3 { width:100%; max-width:100%; }
|
|
49
|
+
.hide-mobile { display:none!important; }
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.quiet {
|
|
53
|
+
color: #7f7f7f;
|
|
54
|
+
color: rgba(0,0,0,0.5);
|
|
55
|
+
}
|
|
56
|
+
.quiet a { opacity: 0.7; }
|
|
57
|
+
|
|
58
|
+
.fraction {
|
|
59
|
+
font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace;
|
|
60
|
+
font-size: 10px;
|
|
61
|
+
color: #555;
|
|
62
|
+
background: #E8E8E8;
|
|
63
|
+
padding: 4px 5px;
|
|
64
|
+
border-radius: 3px;
|
|
65
|
+
vertical-align: middle;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
div.path a:link, div.path a:visited { color: #333; }
|
|
69
|
+
table.coverage {
|
|
70
|
+
border-collapse: collapse;
|
|
71
|
+
margin: 10px 0 0 0;
|
|
72
|
+
padding: 0;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
table.coverage td {
|
|
76
|
+
margin: 0;
|
|
77
|
+
padding: 0;
|
|
78
|
+
vertical-align: top;
|
|
79
|
+
}
|
|
80
|
+
table.coverage td.line-count {
|
|
81
|
+
text-align: right;
|
|
82
|
+
padding: 0 5px 0 20px;
|
|
83
|
+
}
|
|
84
|
+
table.coverage td.line-coverage {
|
|
85
|
+
text-align: right;
|
|
86
|
+
padding-right: 10px;
|
|
87
|
+
min-width:20px;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
table.coverage td span.cline-any {
|
|
91
|
+
display: inline-block;
|
|
92
|
+
padding: 0 5px;
|
|
93
|
+
width: 100%;
|
|
94
|
+
}
|
|
95
|
+
.missing-if-branch {
|
|
96
|
+
display: inline-block;
|
|
97
|
+
margin-right: 5px;
|
|
98
|
+
border-radius: 3px;
|
|
99
|
+
position: relative;
|
|
100
|
+
padding: 0 4px;
|
|
101
|
+
background: #333;
|
|
102
|
+
color: yellow;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.skip-if-branch {
|
|
106
|
+
display: none;
|
|
107
|
+
margin-right: 10px;
|
|
108
|
+
position: relative;
|
|
109
|
+
padding: 0 4px;
|
|
110
|
+
background: #ccc;
|
|
111
|
+
color: white;
|
|
112
|
+
}
|
|
113
|
+
.missing-if-branch .typ, .skip-if-branch .typ {
|
|
114
|
+
color: inherit !important;
|
|
115
|
+
}
|
|
116
|
+
.coverage-summary {
|
|
117
|
+
border-collapse: collapse;
|
|
118
|
+
width: 100%;
|
|
119
|
+
}
|
|
120
|
+
.coverage-summary tr { border-bottom: 1px solid #bbb; }
|
|
121
|
+
.keyline-all { border: 1px solid #ddd; }
|
|
122
|
+
.coverage-summary td, .coverage-summary th { padding: 10px; }
|
|
123
|
+
.coverage-summary tbody { border: 1px solid #bbb; }
|
|
124
|
+
.coverage-summary td { border-right: 1px solid #bbb; }
|
|
125
|
+
.coverage-summary td:last-child { border-right: none; }
|
|
126
|
+
.coverage-summary th {
|
|
127
|
+
text-align: left;
|
|
128
|
+
font-weight: normal;
|
|
129
|
+
white-space: nowrap;
|
|
130
|
+
}
|
|
131
|
+
.coverage-summary th.file { border-right: none !important; }
|
|
132
|
+
.coverage-summary th.pct { }
|
|
133
|
+
.coverage-summary th.pic,
|
|
134
|
+
.coverage-summary th.abs,
|
|
135
|
+
.coverage-summary td.pct,
|
|
136
|
+
.coverage-summary td.abs { text-align: right; }
|
|
137
|
+
.coverage-summary td.file { white-space: nowrap; }
|
|
138
|
+
.coverage-summary td.pic { min-width: 120px !important; }
|
|
139
|
+
.coverage-summary tfoot td { }
|
|
140
|
+
|
|
141
|
+
.coverage-summary .sorter {
|
|
142
|
+
height: 10px;
|
|
143
|
+
width: 7px;
|
|
144
|
+
display: inline-block;
|
|
145
|
+
margin-left: 0.5em;
|
|
146
|
+
background: url(sort-arrow-sprite.png) no-repeat scroll 0 0 transparent;
|
|
147
|
+
}
|
|
148
|
+
.coverage-summary .sorted .sorter {
|
|
149
|
+
background-position: 0 -20px;
|
|
150
|
+
}
|
|
151
|
+
.coverage-summary .sorted-desc .sorter {
|
|
152
|
+
background-position: 0 -10px;
|
|
153
|
+
}
|
|
154
|
+
.status-line { height: 10px; }
|
|
155
|
+
/* yellow */
|
|
156
|
+
.cbranch-no { background: yellow !important; color: #111; }
|
|
157
|
+
/* dark red */
|
|
158
|
+
.red.solid, .status-line.low, .low .cover-fill { background:#C21F39 }
|
|
159
|
+
.low .chart { border:1px solid #C21F39 }
|
|
160
|
+
.highlighted,
|
|
161
|
+
.highlighted .cstat-no, .highlighted .fstat-no, .highlighted .cbranch-no{
|
|
162
|
+
background: #C21F39 !important;
|
|
163
|
+
}
|
|
164
|
+
/* medium red */
|
|
165
|
+
.cstat-no, .fstat-no, .cbranch-no, .cbranch-no { background:#F6C6CE }
|
|
166
|
+
/* light red */
|
|
167
|
+
.low, .cline-no { background:#FCE1E5 }
|
|
168
|
+
/* light green */
|
|
169
|
+
.high, .cline-yes { background:rgb(230,245,208) }
|
|
170
|
+
/* medium green */
|
|
171
|
+
.cstat-yes { background:rgb(161,215,106) }
|
|
172
|
+
/* dark green */
|
|
173
|
+
.status-line.high, .high .cover-fill { background:rgb(77,146,33) }
|
|
174
|
+
.high .chart { border:1px solid rgb(77,146,33) }
|
|
175
|
+
/* dark yellow (gold) */
|
|
176
|
+
.status-line.medium, .medium .cover-fill { background: #f9cd0b; }
|
|
177
|
+
.medium .chart { border:1px solid #f9cd0b; }
|
|
178
|
+
/* light yellow */
|
|
179
|
+
.medium { background: #fff4c2; }
|
|
180
|
+
|
|
181
|
+
.cstat-skip { background: #ddd; color: #111; }
|
|
182
|
+
.fstat-skip { background: #ddd; color: #111 !important; }
|
|
183
|
+
.cbranch-skip { background: #ddd !important; color: #111; }
|
|
184
|
+
|
|
185
|
+
span.cline-neutral { background: #eaeaea; }
|
|
186
|
+
|
|
187
|
+
.coverage-summary td.empty {
|
|
188
|
+
opacity: .5;
|
|
189
|
+
padding-top: 4px;
|
|
190
|
+
padding-bottom: 4px;
|
|
191
|
+
line-height: 1;
|
|
192
|
+
color: #888;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.cover-fill, .cover-empty {
|
|
196
|
+
display:inline-block;
|
|
197
|
+
height: 12px;
|
|
198
|
+
}
|
|
199
|
+
.chart {
|
|
200
|
+
line-height: 0;
|
|
201
|
+
}
|
|
202
|
+
.cover-empty {
|
|
203
|
+
background: white;
|
|
204
|
+
}
|
|
205
|
+
.cover-full {
|
|
206
|
+
border-right: none !important;
|
|
207
|
+
}
|
|
208
|
+
pre.prettyprint {
|
|
209
|
+
border: none !important;
|
|
210
|
+
padding: 0 !important;
|
|
211
|
+
margin: 0 !important;
|
|
212
|
+
}
|
|
213
|
+
.com { color: #999 !important; }
|
|
214
|
+
.ignore-none { color: #999; font-weight: normal; }
|
|
215
|
+
|
|
216
|
+
.wrapper {
|
|
217
|
+
min-height: 100%;
|
|
218
|
+
height: auto !important;
|
|
219
|
+
height: 100%;
|
|
220
|
+
margin: 0 auto -48px;
|
|
221
|
+
}
|
|
222
|
+
.footer, .push {
|
|
223
|
+
height: 48px;
|
|
224
|
+
}
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
var jumpToCode = (function init() {
|
|
3
|
+
// Classes of code we would like to highlight in the file view
|
|
4
|
+
var missingCoverageClasses = ['.cbranch-no', '.cstat-no', '.fstat-no'];
|
|
5
|
+
|
|
6
|
+
// Elements to highlight in the file listing view
|
|
7
|
+
var fileListingElements = ['td.pct.low'];
|
|
8
|
+
|
|
9
|
+
// We don't want to select elements that are direct descendants of another match
|
|
10
|
+
var notSelector = ':not(' + missingCoverageClasses.join('):not(') + ') > '; // becomes `:not(a):not(b) > `
|
|
11
|
+
|
|
12
|
+
// Selecter that finds elements on the page to which we can jump
|
|
13
|
+
var selector =
|
|
14
|
+
fileListingElements.join(', ') +
|
|
15
|
+
', ' +
|
|
16
|
+
notSelector +
|
|
17
|
+
missingCoverageClasses.join(', ' + notSelector); // becomes `:not(a):not(b) > a, :not(a):not(b) > b`
|
|
18
|
+
|
|
19
|
+
// The NodeList of matching elements
|
|
20
|
+
var missingCoverageElements = document.querySelectorAll(selector);
|
|
21
|
+
|
|
22
|
+
var currentIndex;
|
|
23
|
+
|
|
24
|
+
function toggleClass(index) {
|
|
25
|
+
missingCoverageElements
|
|
26
|
+
.item(currentIndex)
|
|
27
|
+
.classList.remove('highlighted');
|
|
28
|
+
missingCoverageElements.item(index).classList.add('highlighted');
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
function makeCurrent(index) {
|
|
32
|
+
toggleClass(index);
|
|
33
|
+
currentIndex = index;
|
|
34
|
+
missingCoverageElements.item(index).scrollIntoView({
|
|
35
|
+
behavior: 'smooth',
|
|
36
|
+
block: 'center',
|
|
37
|
+
inline: 'center'
|
|
38
|
+
});
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
function goToPrevious() {
|
|
42
|
+
var nextIndex = 0;
|
|
43
|
+
if (typeof currentIndex !== 'number' || currentIndex === 0) {
|
|
44
|
+
nextIndex = missingCoverageElements.length - 1;
|
|
45
|
+
} else if (missingCoverageElements.length > 1) {
|
|
46
|
+
nextIndex = currentIndex - 1;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
makeCurrent(nextIndex);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
function goToNext() {
|
|
53
|
+
var nextIndex = 0;
|
|
54
|
+
|
|
55
|
+
if (
|
|
56
|
+
typeof currentIndex === 'number' &&
|
|
57
|
+
currentIndex < missingCoverageElements.length - 1
|
|
58
|
+
) {
|
|
59
|
+
nextIndex = currentIndex + 1;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
makeCurrent(nextIndex);
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
return function jump(event) {
|
|
66
|
+
if (
|
|
67
|
+
document.getElementById('fileSearch') === document.activeElement &&
|
|
68
|
+
document.activeElement != null
|
|
69
|
+
) {
|
|
70
|
+
// if we're currently focused on the search input, we don't want to navigate
|
|
71
|
+
return;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
switch (event.which) {
|
|
75
|
+
case 78: // n
|
|
76
|
+
case 74: // j
|
|
77
|
+
goToNext();
|
|
78
|
+
break;
|
|
79
|
+
case 66: // b
|
|
80
|
+
case 75: // k
|
|
81
|
+
case 80: // p
|
|
82
|
+
goToPrevious();
|
|
83
|
+
break;
|
|
84
|
+
}
|
|
85
|
+
};
|
|
86
|
+
})();
|
|
87
|
+
window.addEventListener('keydown', jumpToCode);
|
|
Binary file
|