We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Vortiago/mcp-outline'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
server.py•395 B
"""
Outline MCP Server
A simple MCP server that provides document outline capabilities.
"""
from mcp.server.fastmcp import FastMCP
from mcp_outline.features import register_all
# Create a FastMCP server instance with a name
mcp = FastMCP("Document Outline")
# Register all features
register_all(mcp)
def main():
# Start the server
mcp.run()
if __name__ == "__main__":
main()