@tiflux/mcp
Version:
TiFlux MCP Server - Model Context Protocol integration for Claude Code and other AI clients
22 lines (20 loc) • 456 B
JavaScript
/**
* Schemas dos tools relacionados a clientes
*/
const clientSchemas = {
search_client: {
name: 'search_client',
description: 'Buscar clientes no TiFlux por nome',
inputSchema: {
type: 'object',
properties: {
client_name: {
type: 'string',
description: 'Nome do cliente a ser buscado (busca parcial)'
}
},
required: ['client_name']
}
}
};
module.exports = clientSchemas;