Skip to main content
Glama

Office MCP Server

by walkingzzzy
TaskPane.tsx492 B
import { ReactNode } from 'react'; import './TaskPane.css'; interface TaskPaneProps { children: ReactNode; title?: string; } /** * 任务窗格布局组件 */ function TaskPane({ children, title = 'Office AI 助手' }: TaskPaneProps) { return ( <div className="taskpane"> <div className="taskpane-header"> <h1 className="taskpane-title">{title}</h1> </div> <div className="taskpane-content">{children}</div> </div> ); } export default TaskPane;

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/walkingzzzy/office-mcp'

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