Skip to main content
Glama

Fonoster MCP Server

Official
by fonoster
MIT License
118
7,391
  • Apple
  • Linux
tools-section.tsx5.49 kB
/** * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com) * http://github.com/fonoster/fonoster * * This file is part of Fonoster * * Licensed under the MIT License (the "License"); * you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * https://opensource.org/licenses/MIT * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { useCallback, useMemo, useState } from "react"; import { Box } from "@mui/material"; import { Typography } from "~/core/components/design-system/ui/typography/typography"; import { FormField, FormControl, FormItem } from "~/core/components/design-system/forms"; import type { Control } from "react-hook-form"; import type { Schema } from "../schemas/application-schema"; import { Select } from "~/core/components/design-system/ui/select/select"; import { ModalTrigger } from "~/core/components/general/modal-trigger"; import { CreateToolModal } from "../tooling/create-tool.modal"; import { useFieldArray } from "react-hook-form"; import { toast } from "~/core/components/design-system/ui/toaster/toaster"; import { AllowedHttpMethod } from "../schemas/tool-schema"; export interface ToolsSectionProps { control: Control<Schema>; } export interface ToolModalSchema { name: string; description: string; requestStartMessage?: string; parameters: { type: "object" | "array"; properties: { key: string; type: string; format?: "enum" | "date-time"; pattern?: string; }[]; required: string[]; }; operation: { method: AllowedHttpMethod; url: string; waitForResponse: boolean; headers: { key: string; value: string }[]; }; } export const ToolsSection = ({ control }: ToolsSectionProps) => { const [isOpen, setIsOpen] = useState(false); const [editingIndex, setEditingIndex] = useState<number | null>(null); const [initialTool, setInitialTool] = useState<ToolModalSchema | null>(null); const { fields: tools, append, remove } = useFieldArray<Schema>({ control, name: "intelligence.config.languageModel.tools" }); const toolValues = useMemo( () => tools.map((tool) => tool.name as string), [tools] ); const toolOptions = useMemo( () => tools.map((tool) => ({ value: tool.name as string, label: tool.name as string })), [tools] ); const handleDelete = useCallback( (oldValues: string[], newValues: string[]) => { const deleted = oldValues.find((val) => !newValues.includes(val)); if (!deleted) return; const idx = tools.findIndex((tool) => tool.name === deleted); if (idx !== -1) remove(idx); }, [tools, remove] ); const handleOpenModal = useCallback(() => { setIsOpen(true); }, []); const handleCloseModal = useCallback(() => { setIsOpen(false); setEditingIndex(null); setInitialTool(null); }, []); const handleToolSubmit = useCallback( (tool: ToolModalSchema) => { const existingIndex = tools.findIndex( (t, i) => t.name === tool.name && i !== (editingIndex ?? -1) ); if (existingIndex !== -1) { toast("Tool name must be unique"); return; } if (editingIndex != null) { // Update existing tool const updatedTools = [...tools]; updatedTools[editingIndex] = tool as any; // Remove and re-add to maintain order remove(editingIndex); updatedTools.forEach((t) => append(t)); } else { // Add new tool append(tool as any); } handleCloseModal(); }, [tools, editingIndex, append, remove, handleCloseModal] ); return ( <> <Box sx={{ mt: "8px" }}> <Typography variant="mono-medium" color="base.03"> Tools </Typography> <Typography variant="body-micro" color="base.03"> Define callable tools for your Language Model. Use the button below to add tools. </Typography> </Box> <FormField control={control} name="intelligence.config.languageModel.tools" render={() => ( <FormItem> <FormControl> <Box sx={{ display: "flex", flexDirection: "column", gap: "12px" }} > <Select label="Language Model Tools" placeholder="Click below to add tools" multiple value={toolValues} options={toolOptions} disabled onChange={(event) => { const newValues = event.target.value as string[]; handleDelete(toolValues, newValues); }} /> <ModalTrigger label="Add Tool" onClick={handleOpenModal} /> </Box> </FormControl> </FormItem> )} /> <CreateToolModal isOpen={isOpen} onClose={handleCloseModal} initialValues={initialTool ?? undefined} onFormSubmit={(data: unknown) => handleToolSubmit(data as ToolModalSchema) } /> </> ); };

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/fonoster/fonoster'

If you have feedback or need assistance with the MCP directory API, please join our Discord server