Generic MCP Client
Connect any MCP-compatible client to Shipchart. This page covers the connection details your client needs.
Connection details
| Server URL | https://shipchart.app/mcp |
| Transport | Streamable HTTP (HTTP with SSE) |
| Authentication | HTTP Bearer token via Authorization header |
| Token | Generate in Settings → API Tokens |
Config example
Most MCP clients use a JSON config file. The typical format is:
{
"mcpServers": {
"shipchart": {
"url": "https://shipchart.app/mcp",
"headers": {
"Authorization": "Bearer YOUR_TOKEN_HERE"
}
}
}
}Note: Some clients use serverUrl instead of url. Check your client's documentation.
Available tools
All 23 tools are available. Read tools need read, write tools need write, and the sync tool needs sync ability.
Read tools
dashboard_get— Portfolio summaryprojects_list— List projects with filtersprojects_get— Project detailprojects_get_context— Developer context for a projectrevenue_list— Revenue entriescheckins_list— Check-insideas_list— Ideas with scoresintegrations_list— Integration statusgoals_list_by_project— Goals for a projectgoals_list— All goals across portfoliogoals_portfolio— Portfolio-level goalsexpenses_list— Expenses with monthly totalsfinancials_summary— Revenue, expenses, and profit
Write tools
checkins_create— Record a check-inrevenue_create— Log revenueprojects_create— Create a projectprojects_update— Update a projectideas_create— Capture an ideaideas_promote— Promote idea to projectgoals_create— Set a project or portfolio goalgoals_update_progress— Update goal progressexpenses_create— Track an expenseintegrations_sync— Manual integration sync (needssyncability)
Prompts
weekly-review-prompt— Portfolio review with stale projects, revenue trends, and focus suggestionsproject-health-check-prompt— Deep-dive on a specific project (takesproject_nameargument)quick-capture-prompt— Rapid check-in session across all active projectsswitch-project-prompt— Load full project context and get a briefing to start workingshipchart:init— Set up a project from codebase context (find/create + populate fields)shipchart:discover-context— Refresh context fields for an existing project from codebase analysis
Resources
founder://dashboard— Portfolio summary snapshotfounder://projects/{id}— Project detail by IDfounder://projects/{id}/context— Full developer context for a project
Need help? Check the Claude Code guide for a more detailed walkthrough, including example interactions.