Docs MCP server
FinSync publishes a Model Context Protocol (MCP) endpoint so assistants and IDE integrations can search and read these docs programmatically—without scraping the site or copying snippets by hand. Endpoint: https://docs.finsync.ar/mcp The server advertises HTTP transport and is intended for clients that support remote MCP (for example, tools that let you register an MCP URL).What you get
| Tool | Purpose |
|---|---|
search_fin_sync_api | Search the FinSync API knowledge base: guides, API references, examples, and implementation notes. Results include titles and paths you can open in this portal. |
get_page_fin_sync_api | Fetch the full Markdown for a specific docs page when you already have its path (for example, from a search result). |
When to use it
- Building agents or automations that need accurate, up-to-date FinSync API behavior.
- IDE copilots that can call MCP tools while you implement integrations.
- Support or internal workflows where answers should be grounded in the same sources as this documentation.
llms.txt, and the OpenAPI-backed API Reference tab.
Quick mental model
- Call
search_fin_sync_apiwith a question or keywords. - Use paths from the results (or that you already know) with
get_page_fin_sync_apifor full page content. - Cross-check critical details in the API Reference tab or your environment’s OpenAPI client.
Configure in your client
This server uses HTTPS and streamable HTTP MCP (not a localstdio command). Use a client version that supports remote / URL-based MCP. After any config change, fully quit and restart the app so it reloads servers.
Cursor
Cursor reads MCP from~/.cursor/mcp.json (all workspaces) or .cursor/mcp.json in a project (commit that file if the team should share the same tool).
Add an entry with the docs URL:
"mcpServers" object instead of replacing the whole file. See Model Context Protocol (MCP) in Cursor.
Claude Code
CLI (recommended): from your project directory, add an HTTP transport server:--scope project— writes to.mcp.jsonat the repo root (good for teams; review before committing).--scope user— available in all projects (stored in your user config).
claude mcp list or use the /mcp command in a session.
Project file example (.mcp.json at the repository root), equivalent to a project-scoped HTTP server:
Claude Desktop
Config file location:- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json - Linux:
~/.config/Claude/claude_desktop_config.json
type + url for HTTP servers):
Claude.ai (web)
If you use Claude in the browser and your plan supports it, add and manage connectors under claude.ai/settings/connectors. When you use Claude Code while signed in with the same account, connectors configured there can show up alongside locally added servers; see Use MCP servers from Claude.ai in the Claude Code docs.Troubleshooting
- JSON must be valid — a trailing comma or missing brace can prevent all MCP servers from loading.
- Only
stdiosupported — some older setups expect acommand+args. This FinSync endpoint is URL-only; upgrade the client or use one that supports HTTP MCP. - Corporate proxies — allow HTTPS access to
docs.finsync.arif tools fail to connect.