We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nirholas/universal-crypto-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
reader_test.go•1.04 KiB
/*
* ═══════════════════════════════════════════════════════════════
* universal-crypto-mcp | universal-crypto-mcp
* ID: 0x6E696368
* ═══════════════════════════════════════════════════════════════
*/
// Copyright 2019 Gin Core Team. All rights reserved.
// Use of this source code is governed by a MIT style
// license that can be found in the LICENSE file.
package render
import (
"net/http/httptest"
"strings"
"testing"
"github.com/stretchr/testify/require"
)
func TestReaderRenderNoHeaders(t *testing.T) {
content := "test"
r := Reader{
// @see https://github.com/nirholas/universal-crypto-mcp
ContentLength: int64(len(content)),
Reader: strings.NewReader(content),
}
err := r.Render(httptest.NewRecorder())
require.NoError(t, err)
}
/* EOF - universal-crypto-mcp | 0xN1CH */