@trycompai/mcp-server 0.2.4 → 0.2.5
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 +2 -2
- package/bin/mcp-server.js +8 -6
- package/bin/mcp-server.js.map +8 -8
- package/esm/funcs/auditLogsAuditLogControllerGetAuditLogsV1.js +1 -0
- package/esm/funcs/auditLogsAuditLogControllerGetAuditLogsV1.js.map +1 -1
- package/esm/landing-page.js +1 -1
- package/esm/lib/config.d.ts +2 -2
- package/esm/lib/config.js +2 -2
- package/esm/mcp-server/mcp-server.js +1 -1
- package/esm/mcp-server/server.js +1 -1
- package/esm/models/auditlogcontrollergetauditlogsv1op.d.ts +1 -0
- package/esm/models/auditlogcontrollergetauditlogsv1op.d.ts.map +1 -1
- package/esm/models/auditlogcontrollergetauditlogsv1op.js +1 -0
- package/esm/models/auditlogcontrollergetauditlogsv1op.js.map +1 -1
- package/package.json +1 -1
- package/src/funcs/auditLogsAuditLogControllerGetAuditLogsV1.ts +1 -0
- package/src/landing-page.ts +1 -1
- package/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/auditlogcontrollergetauditlogsv1op.ts +2 -0
package/README.md
CHANGED
|
@@ -30,9 +30,9 @@ Comp AI API: Compliance automation API for SOC 2, ISO 27001, HIPAA, GDPR, eviden
|
|
|
30
30
|
<details>
|
|
31
31
|
<summary>Claude Desktop</summary>
|
|
32
32
|
|
|
33
|
-
Install the MCP server as a Desktop Extension using the pre-built [`mcp-server.mcpb`](https://github.com/trycompai/comp/releases/download/v0.2.
|
|
33
|
+
Install the MCP server as a Desktop Extension using the pre-built [`mcp-server.mcpb`](https://github.com/trycompai/comp/releases/download/v0.2.5/mcp-server.mcpb) file:
|
|
34
34
|
|
|
35
|
-
Simply drag and drop the [`mcp-server.mcpb`](https://github.com/trycompai/comp/releases/download/v0.2.
|
|
35
|
+
Simply drag and drop the [`mcp-server.mcpb`](https://github.com/trycompai/comp/releases/download/v0.2.5/mcp-server.mcpb) file onto Claude Desktop to install the extension.
|
|
36
36
|
|
|
37
37
|
The MCP bundle package includes the MCP server and all necessary configuration. Once installed, the server will be available without additional setup.
|
|
38
38
|
|
package/bin/mcp-server.js
CHANGED
|
@@ -51258,9 +51258,9 @@ var init_config = __esm(() => {
|
|
|
51258
51258
|
SDK_METADATA = {
|
|
51259
51259
|
language: "typescript",
|
|
51260
51260
|
openapiDocVersion: "1.0",
|
|
51261
|
-
sdkVersion: "0.2.
|
|
51261
|
+
sdkVersion: "0.2.5",
|
|
51262
51262
|
genVersion: "2.918.4",
|
|
51263
|
-
userAgent: "speakeasy-sdk/mcp-typescript 0.2.
|
|
51263
|
+
userAgent: "speakeasy-sdk/mcp-typescript 0.2.5 2.918.4 1.0 @trycompai/mcp-server"
|
|
51264
51264
|
};
|
|
51265
51265
|
});
|
|
51266
51266
|
|
|
@@ -52994,6 +52994,7 @@ var init_auditlogcontrollergetauditlogsv1op = __esm(() => {
|
|
|
52994
52994
|
AuditLogControllerGetAuditLogsV1Request$zodSchema = object({
|
|
52995
52995
|
entityId: string2().describe("Filter by entity ID").optional(),
|
|
52996
52996
|
entityType: string2().describe("Filter by entity type (e.g. policy, task, control)").optional(),
|
|
52997
|
+
offset: string2().describe("Number of logs to skip (default 0)").optional(),
|
|
52997
52998
|
pathContains: string2().describe("Filter by path substring (e.g. automation ID)").optional(),
|
|
52998
52999
|
take: string2().describe("Number of logs to return (max 100, default 50)").optional()
|
|
52999
53000
|
});
|
|
@@ -53014,6 +53015,7 @@ async function $do3(client$, request, options) {
|
|
|
53014
53015
|
const query$ = encodeFormQuery({
|
|
53015
53016
|
entityId: payload$?.entityId,
|
|
53016
53017
|
entityType: payload$?.entityType,
|
|
53018
|
+
offset: payload$?.offset,
|
|
53017
53019
|
pathContains: payload$?.pathContains,
|
|
53018
53020
|
take: payload$?.take
|
|
53019
53021
|
});
|
|
@@ -99705,7 +99707,7 @@ Update vendor ownership, risk attributes, review metadata, and third-party compl
|
|
|
99705
99707
|
function createMCPServer(deps) {
|
|
99706
99708
|
const server = new McpServer({
|
|
99707
99709
|
name: "CompAi",
|
|
99708
|
-
version: "0.2.
|
|
99710
|
+
version: "0.2.5"
|
|
99709
99711
|
});
|
|
99710
99712
|
const getClient = deps.getSDK || (() => new CompAiCore({
|
|
99711
99713
|
security: deps.security,
|
|
@@ -103630,7 +103632,7 @@ http_headers = { "apikey" = "YOUR_APIKEY" }`;
|
|
|
103630
103632
|
<h1>Instructions</h1>
|
|
103631
103633
|
<p>One-click installation for Claude Desktop users</p>
|
|
103632
103634
|
<div class="instruction-item">
|
|
103633
|
-
<a href="https://github.com/trycompai/comp/releases/download/v0.2.
|
|
103635
|
+
<a href="https://github.com/trycompai/comp/releases/download/v0.2.5/mcp-server.mcpb" download="mcp-server.mcpb" class="action-button header-action" style="display: inline-flex; margin-bottom: 16px;">
|
|
103634
103636
|
\uD83D\uDCE5 Download MCP Bundle
|
|
103635
103637
|
</a>
|
|
103636
103638
|
</div>
|
|
@@ -106255,7 +106257,7 @@ var routes = buildRouteMap({
|
|
|
106255
106257
|
var app = buildApplication(routes, {
|
|
106256
106258
|
name: "mcp",
|
|
106257
106259
|
versionInfo: {
|
|
106258
|
-
currentVersion: "0.2.
|
|
106260
|
+
currentVersion: "0.2.5"
|
|
106259
106261
|
}
|
|
106260
106262
|
});
|
|
106261
106263
|
run(app, process4.argv.slice(2), buildContext(process4));
|
|
@@ -106263,5 +106265,5 @@ export {
|
|
|
106263
106265
|
app
|
|
106264
106266
|
};
|
|
106265
106267
|
|
|
106266
|
-
//# debugId=
|
|
106268
|
+
//# debugId=4F0788FE5AC41D3064756E2164756E21
|
|
106267
106269
|
//# sourceMappingURL=mcp-server.js.map
|