newtype-profile 1.0.4 → 1.0.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/dist/cli/index.js +1 -1
- package/dist/index.js +1 -3
- package/dist/mcp/index.d.ts +2 -1
- package/dist/mcp/sequential-thinking.d.ts +6 -2
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -2253,7 +2253,7 @@ var require_picocolors = __commonJS((exports, module) => {
|
|
|
2253
2253
|
var require_package = __commonJS((exports, module) => {
|
|
2254
2254
|
module.exports = {
|
|
2255
2255
|
name: "newtype-profile",
|
|
2256
|
-
version: "1.0.
|
|
2256
|
+
version: "1.0.5",
|
|
2257
2257
|
description: "AI Agent Collaboration System for Content Creation - Based on oh-my-opencode",
|
|
2258
2258
|
main: "dist/index.js",
|
|
2259
2259
|
types: "dist/index.d.ts",
|
package/dist/index.js
CHANGED
|
@@ -51141,10 +51141,8 @@ function createFilesystemMcp(config3) {
|
|
|
51141
51141
|
// src/mcp/sequential-thinking.ts
|
|
51142
51142
|
function createSequentialThinkingMcp() {
|
|
51143
51143
|
return {
|
|
51144
|
-
type: "stdio",
|
|
51145
51144
|
command: "npx",
|
|
51146
|
-
args: ["-y", "@modelcontextprotocol/server-sequential-thinking"]
|
|
51147
|
-
enabled: true
|
|
51145
|
+
args: ["-y", "@modelcontextprotocol/server-sequential-thinking"]
|
|
51148
51146
|
};
|
|
51149
51147
|
}
|
|
51150
51148
|
|
package/dist/mcp/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { type StdioMcpConfig } from "./tavily";
|
|
2
|
+
import { type LocalMcpConfig } from "./sequential-thinking";
|
|
2
3
|
import type { McpConfig } from "./types";
|
|
3
4
|
export { McpNameSchema, type McpName, McpConfigSchema, type McpConfig } from "./types";
|
|
4
5
|
export type { StdioMcpConfig } from "./tavily";
|
|
@@ -8,5 +9,5 @@ type RemoteMcpConfig = {
|
|
|
8
9
|
enabled: boolean;
|
|
9
10
|
headers?: Record<string, string>;
|
|
10
11
|
};
|
|
11
|
-
type AnyMcpConfig = RemoteMcpConfig | StdioMcpConfig;
|
|
12
|
+
type AnyMcpConfig = RemoteMcpConfig | StdioMcpConfig | LocalMcpConfig;
|
|
12
13
|
export declare function createBuiltinMcps(disabledMcps?: string[], mcpConfig?: McpConfig): Record<string, AnyMcpConfig>;
|
|
@@ -1,2 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
export type LocalMcpConfig = {
|
|
2
|
+
command: string;
|
|
3
|
+
args: string[];
|
|
4
|
+
env?: Record<string, string>;
|
|
5
|
+
};
|
|
6
|
+
export declare function createSequentialThinkingMcp(): LocalMcpConfig;
|