Skip to main content
Glama

mcp-appstore

by appreply-co
dissoc.js685 B
var _curry2 = require('./internal/_curry2'); /** * Returns a new object that does not contain a `prop` property. * * @func * @memberOf R * @since v0.10.0 * @category Object * @sig String -> {k: v} -> {k: v} * @param {String} prop the name of the property to dissociate * @param {Object} obj the object to clone * @return {Object} a new object similar to the original but without the specified property * @see R.assoc * @example * * R.dissoc('b', {a: 1, b: 2, c: 3}); //=> {a: 1, c: 3} */ module.exports = _curry2(function dissoc(prop, obj) { var result = {}; for (var p in obj) { if (p !== prop) { result[p] = obj[p]; } } return result; });

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/appreply-co/mcp-appstore'

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