Skip to main content
Glama
delete-active-file.ts763 B
import { API_BASE_URL, TOKEN } from './config' import type { RequestHandlerExtra } from '@modelcontextprotocol/sdk/shared/protocol.js' import type { CallToolResult } from '@modelcontextprotocol/sdk/types.js' export const deleteActiveFile = async (extra: RequestHandlerExtra): Promise<CallToolResult> => { const response = await fetch(`${API_BASE_URL}/active`, { method: 'DELETE', headers: { Authorization: `Bearer ${TOKEN}`, }, }) if (!response.ok) { return { content: [ { type: 'text', text: JSON.stringify({ error: `Failed to delete active file: ${response.statusText}` }), }, ], } } return { content: [{ type: 'text', text: 'Active file deleted successfully' }], } }

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/gregkonush/mcp-obsidian'

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