We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/kirby-k-0723/obsidian-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
/**
* Obsidian MCP Server Types
*/
export interface Note {
path: string;
name: string;
content: string;
frontmatter?: Record<string, unknown>;
tags: string[];
links: string[];
backlinks: string[];
createdAt: Date;
modifiedAt: Date;
}
export interface NoteMetadata {
path: string;
name: string;
tags: string[];
links: string[];
backlinks: string[];
createdAt: Date;
modifiedAt: Date;
}
export interface SearchResult {
path: string;
name: string;
matches: SearchMatch[];
score: number;
}
export interface SearchMatch {
line: number;
content: string;
context: string;
}
export interface GraphNode {
id: string;
name: string;
path: string;
type: 'note' | 'tag' | 'unresolved';
}
export interface GraphEdge {
source: string;
target: string;
type: 'link' | 'backlink' | 'tag';
}
export interface Graph {
nodes: GraphNode[];
edges: GraphEdge[];
}
export interface VaultConfig {
path: string;
}