Skip to main content
Glama

Neon MCP Server

by fefergrgrgrg
config.js2.25 kB
'use strict'; //Setting up route angular.module('insight').config(function($routeProvider) { $routeProvider. when('/block/:blockHash', { templateUrl: '/views/block.html', title: 'Smileycoin Block ' }). when('/block-index/:blockHeight', { controller: 'BlocksController', templateUrl: '/views/redirect.html' }). when('/tx/send', { templateUrl: '/views/transaction_sendraw.html', title: 'Broadcast Raw Transaction' }). when('/tx/:txId/:v_type?/:v_index?', { templateUrl: '/views/transaction.html', title: 'Smileycoin Transaction ' }). when('/', { templateUrl: '/views/index.html', title: 'Home' }). when('/blocks', { templateUrl: '/views/block_list.html', title: 'Smileycoin Blocks solved Today' }). when('/blocks-date/:blockDate/:startTimestamp?', { templateUrl: '/views/block_list.html', title: 'Smileycoin Blocks solved ' }). when('/address/:addrStr', { templateUrl: '/views/address.html', title: 'Smileycoin Address ' }). when('/status', { templateUrl: '/views/status.html', title: 'Status' }). when('/messages/verify', { templateUrl: '/views/messages_verify.html', title: 'Verify Message' }) .otherwise({ templateUrl: '/views/404.html', title: 'Error' }); }); //Setting HTML5 Location Mode angular.module('insight') .config(function($locationProvider) { $locationProvider.html5Mode(true); $locationProvider.hashPrefix('!'); }) .run(function($rootScope, $route, $location, $routeParams, $anchorScroll, ngProgress, gettextCatalog, amMoment) { gettextCatalog.currentLanguage = defaultLanguage; amMoment.changeLocale(defaultLanguage); $rootScope.$on('$routeChangeStart', function() { ngProgress.start(); }); $rootScope.$on('$routeChangeSuccess', function() { ngProgress.complete(); //Change page title, based on Route information $rootScope.titleDetail = ''; $rootScope.title = $route.current.title; $rootScope.isCollapsed = true; $rootScope.currentAddr = null; $location.hash($routeParams.scrollTo); $anchorScroll(); }); });

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/fefergrgrgrg/neon-mcp'

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