Skip to main content
Glama

Gemini Thinking Server

'use strict'; var parse = require('../'); var test = require('tape'); test('dotted alias', function (t) { var argv = parse(['--a.b', '22'], { default: { 'a.b': 11 }, alias: { 'a.b': 'aa.bb' } }); t.equal(argv.a.b, 22); t.equal(argv.aa.bb, 22); t.end(); }); test('dotted default', function (t) { var argv = parse('', { default: { 'a.b': 11 }, alias: { 'a.b': 'aa.bb' } }); t.equal(argv.a.b, 11); t.equal(argv.aa.bb, 11); t.end(); }); test('dotted default with no alias', function (t) { var argv = parse('', { default: { 'a.b': 11 } }); t.equal(argv.a.b, 11); t.end(); });

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/bartekke8it56w2/new-mcp'

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