We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Digital-Defiance/mcp-screenshot'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
constantFrom.js•287 B
import { ConstantArbitrary } from './_internals/ConstantArbitrary.js';
function constantFrom(...values) {
if (values.length === 0) {
throw new Error('fc.constantFrom expects at least one parameter');
}
return new ConstantArbitrary(values);
}
export { constantFrom };