UNPKG

@chinchillaenterprises/mcp-upwork

Version:

Modular Upwork MCP server for job search and proposal management via Upwork API

12 lines (10 loc) 346 B
import { searchFreelancersTool } from "./search-freelancers.js"; import { postJobTool } from "./post-job.js"; export const clientTools = [ searchFreelancersTool.definition, postJobTool.definition ]; export const clientToolHandlers = { "upwork_search_freelancers": searchFreelancersTool.handler, "upwork_post_job": postJobTool.handler };