We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/apollographql/apollo-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
default.nix•346 B
{
pkgs,
lib,
}: let
node-tools = pkgs.callPackage ./node-generated {};
# Auto extract the server tools so that we don't have to add them manually
# every time.
node-mcp-server-tools = lib.attrsets.filterAttrs (name: val: lib.strings.hasPrefix "@modelcontextprotocol/" name) node-tools;
in
builtins.attrValues node-mcp-server-tools