We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/gilberth/mcp-cloudflare'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
filenamify-path.d.ts•365 B
import {type Options} from './filenamify.js';
/**
Convert the filename in a path a valid filename and return the augmented path.
@example
```
import {filenamifyPath} from 'filenamify';
filenamifyPath('foo:bar');
//=> 'foo!bar'
```
*/
export default function filenamifyPath(path: string, options?: Options): string;
export type {Options} from './filenamify.js';