Skip to main content
Glama

MCP Filesystem Server

MIT License
35
7
  • Linux
  • Apple

curl_request

Send HTTP requests to external APIs using specified URL, method, headers, and data. Facilitates integration with external services with configurable timeout, redirects, and SSL options.

Instructions

Execute a curl request to an external HTTP API. Allows specifying URL, method, headers, and data. Useful for integrating with external services via HTTP.

Input Schema

NameRequiredDescriptionDefault
dataNoData to send in the request body
followRedirectsNoWhether to follow redirects
headersNoHTTP headers to include in the request
insecureNoWhether to skip SSL certificate verification (use with caution)
methodNoHTTP methodGET
timeoutNoRequest timeout in seconds
urlYesFull URL to send the request to

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "data": { "description": "Data to send in the request body", "type": "string" }, "followRedirects": { "default": true, "description": "Whether to follow redirects", "type": "boolean" }, "headers": { "additionalProperties": { "type": "string" }, "default": {}, "description": "HTTP headers to include in the request", "type": "object" }, "insecure": { "default": false, "description": "Whether to skip SSL certificate verification (use with caution)", "type": "boolean" }, "method": { "default": "GET", "description": "HTTP method", "enum": [ "GET", "POST", "PUT", "DELETE", "PATCH", "HEAD", "OPTIONS" ], "type": "string" }, "timeout": { "default": 30, "description": "Request timeout in seconds", "exclusiveMinimum": 0, "type": "number" }, "url": { "description": "Full URL to send the request to", "type": "string" } }, "required": [ "url" ], "type": "object" }

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/gabrielmaialva33/mcp-filesystem'

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