Skip to main content
Glama

Civo MCP Server

networks.ts1.48 kB
import { Tool } from '@modelcontextprotocol/sdk/types.js'; export const LIST_NETWORKS_TOOL: Tool = { name: 'list_networks', description: 'List available networks on Civo', inputSchema: { type: 'object', properties: {}, }, }; export const CREATE_NETWORK_TOOL: Tool = { name: 'create_network', description: 'Create a new network on Civo', inputSchema: { type: 'object', properties: { label: { type: 'string', description: 'Network label', }, region: { type: 'string', description: 'Region identifier', }, }, required: ['label'], }, }; export const RENAME_NETWORK_TOOL: Tool = { name: 'rename_network', description: 'Rename a network on Civo', inputSchema: { type: 'object', properties: { id: { type: 'string', description: 'Network ID', }, label: { type: 'string', description: 'New network label', }, region: { type: 'string', description: 'Region identifier', }, }, required: ['id', 'label'], }, }; export const DELETE_NETWORK_TOOL: Tool = { name: 'delete_network', description: 'Delete a network on Civo', inputSchema: { type: 'object', properties: { id: { type: 'string', description: 'Network ID', }, region: { type: 'string', description: 'Region identifier', }, }, required: ['id'], }, };

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/tao12345666333/civo-mcp'

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