Files
FastGPT/packages/service/core/app/mcp.ts
Archer c4632a2222 V4.12.3 document (#5600)
* doc

* doc

* perf: log
2025-09-07 20:55:14 +08:00

168 lines
4.6 KiB
TypeScript

import { Client } from '@modelcontextprotocol/sdk/client/index.js';
import { SSEClientTransport } from '@modelcontextprotocol/sdk/client/sse.js';
import { StreamableHTTPClientTransport } from '@modelcontextprotocol/sdk/client/streamableHttp.js';
import type { AppSchema } from '@fastgpt/global/core/app/type';
import { type McpToolConfigType } from '@fastgpt/global/core/app/type';
import { addLog } from '../../common/system/log';
import { retryFn } from '@fastgpt/global/common/system/utils';
import { PluginSourceEnum } from '@fastgpt/global/core/app/plugin/constants';
import { MongoApp } from './schema';
import type { McpToolDataType } from '@fastgpt/global/core/app/mcpTools/type';
import { UserError } from '@fastgpt/global/common/error/utils';
export class MCPClient {
private client: Client;
private url: string;
private headers: Record<string, any> = {};
constructor(config: { url: string; headers: Record<string, any> }) {
this.url = config.url;
this.headers = config.headers;
this.client = new Client({
name: 'FastGPT-MCP-client',
version: '1.0.0'
});
}
private async getConnection(): Promise<Client> {
try {
const transport = new StreamableHTTPClientTransport(new URL(this.url), {
requestInit: {
headers: this.headers
}
});
await this.client.connect(transport);
return this.client;
} catch (error) {
await this.client.connect(
new SSEClientTransport(new URL(this.url), {
requestInit: {
headers: this.headers
},
eventSourceInit: {
fetch: (url, init) => {
const headers = new Headers({
...init?.headers,
...this.headers
});
return fetch(url, {
...init,
headers
});
}
}
})
);
return this.client;
}
}
// 内部方法:关闭连接
private async closeConnection() {
try {
await retryFn(() => this.client.close(), 3);
} catch (error) {
addLog.error('[MCP Client] Failed to close connection:', error);
}
}
/**
* Get available tools list
* @returns List of tools
*/
public async getTools(): Promise<McpToolConfigType[]> {
try {
const client = await this.getConnection();
const response = await client.listTools();
if (!Array.isArray(response.tools)) {
return Promise.reject(new UserError('[MCP Client] Get tools response is not an array'));
}
const tools = response.tools.map((tool) => ({
name: tool.name,
description: tool.description || '',
inputSchema: tool.inputSchema
? {
...tool.inputSchema,
properties: tool.inputSchema.properties || {}
}
: {
type: 'object',
properties: {}
}
}));
// @ts-ignore
return tools;
} catch (error) {
addLog.error('[MCP Client] Failed to get tools:', error);
return Promise.reject(error);
} finally {
await this.closeConnection();
}
}
/**
* Call tool
* @param toolName Tool name
* @param params Parameters
* @returns Tool execution result
*/
public async toolCall(toolName: string, params: Record<string, any>): Promise<any> {
try {
const client = await this.getConnection();
addLog.debug(`[MCP Client] Call tool: ${toolName}`, params);
return await client.callTool(
{
name: toolName,
arguments: params
},
undefined,
{
timeout: 300000
}
);
} catch (error) {
addLog.error(`[MCP Client] Failed to call tool ${toolName}:`, error);
return Promise.reject(error);
} finally {
await this.closeConnection();
}
}
}
export const getMCPChildren = async (app: AppSchema) => {
const isNewMcp = !!app.modules[0].toolConfig?.mcpToolSet;
const id = String(app._id);
if (isNewMcp) {
return (
app.modules[0].toolConfig?.mcpToolSet?.toolList.map((item) => ({
...item,
id: `${PluginSourceEnum.mcp}-${id}/${item.name}`,
avatar: app.avatar
})) ?? []
);
} else {
// Old mcp toolset
const children = await MongoApp.find({
teamId: app.teamId,
parentId: id
}).lean();
return children.map((item) => {
const node = item.modules[0];
const toolData: McpToolDataType = node.inputs[0].value;
return {
avatar: app.avatar,
id: `${PluginSourceEnum.mcp}-${id}/${item.name}`,
...toolData
};
});
}
};