MCP Integration
Connect AI agents directly to your spreadsheet data using the Model Context Protocol
Quick Start
Add OpenSheets to your MCP-compatible AI client
Claude Desktop Configuration
{
"mcpServers": {
"opensheets": {
"url": "https://sheets.platphormnews.com/api/mcp",
"transport": "sse"
}
}
}Or use with any MCP client
MCP Endpoint: https://sheets.platphormnews.com/api/mcp
Transport: Server-Sent Events (SSE)Tools
Tools that AI agents can call to interact with spreadsheet data
list_sheetsList all available sheets with optional filtering
categorystring
limitnumber
get_sheetGet sheet metadata and data by ID
idstring
limitnumber
columnsarray
search_sheetsSearch across all sheets for matching data
querystring
categorystring
search_in_sheetSearch within a specific sheet
idstring
querystring
columnsarray
get_categoriesList all sheet categories
get_sheet_summaryGet statistical summary of a sheet (counts, averages, etc.)
idstring
columnsarray
Resources
Direct access to spreadsheet data via resource URIs
opensheets://sheetsList of all available spreadsheets
opensheets://sheets/{id}Full data and metadata for a specific sheet
opensheets://categoriesList of all sheet categories
Prompts
Pre-built prompts for common spreadsheet analysis tasks
analyze_sheetAnalyze a sheet and provide insights
sheet_id
compare_sheetsCompare data across multiple sheets
sheet_ids
find_trendsIdentify trends in time-series data
sheet_iddate_columnvalue_column
Example Conversation
How an AI agent might use OpenSheets MCP
User:
What were our top-selling products in Q4?
AI Agent:
Let me search the sales data for you...
Tool: search_sheets
Query: "Q4 sales products"
Tool: get_sheet
ID: "abc123"
Columns: ["product", "units_sold", "revenue"]Based on the Q4 Sales Report, the top 3 products were: 1. Enterprise Suite ($489,500) 2. Pro License ($378,000) 3. Basic Plan ($171,050)