Skip to main content
Glama

MCP Server

by hburgoyne
urls.py944 B
from django.urls import path from . import views urlpatterns = [ path('dashboard/', views.dashboard, name='dashboard'), path('oauth/authorize/', views.oauth_authorize, name='oauth_authorize'), path('oauth/callback/', views.oauth_callback, name='oauth_callback'), path('oauth/refresh/', views.refresh_token, name='refresh_token'), path('oauth/direct-connect/', views.direct_connect, name='direct_connect'), path('memories/create/', views.create_memory, name='create_memory'), path('memories/edit/<uuid:memory_id>/', views.edit_memory, name='edit_memory'), path('memories/delete/<uuid:memory_id>/', views.delete_memory, name='delete_memory'), path('memories/search/', views.search_memories, name='search_memories'), path('memories/sync/', views.sync_memories, name='sync_memories'), path('query/user/', views.query_user, name='query_user'), path('profile/', views.profile_view, name='profile'), ]

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/hburgoyne/picard_mcp'

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