Skip to main content
Glama

DeepSeek MCP Server

by Sheshiyer
types.ts884 B
export interface ToolChainContext { previousResults: any[]; metadata: Record<string, any>; } export interface DeepSeekResponse { text: string; usage: { prompt_tokens: number; completion_tokens: number; }; } export interface CacheEntry { result: string; timestamp: number; ttl: number; metadata?: Record<string, any>; } export interface ToolResult { success: boolean; result: any; error?: string; metadata?: Record<string, any>; } export interface ChainableToolConfig { name: string; description: string; inputSchema: Record<string, any>; chainable: boolean; requiresPrevious?: boolean; metadataSchema?: Record<string, any>; } export interface ToolChainStep { toolName: string; params: Record<string, any>; metadata?: Record<string, any>; } export interface ToolChain { steps: ToolChainStep[]; context: ToolChainContext; }

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/Sheshiyer/deepseek-mcp-with-MoE'

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