{"id":26937629,"url":"https://github.com/XeroAPI/xero-mcp-server","last_synced_at":"2025-04-02T13:15:46.210Z","repository":{"id":283718272,"uuid":"949710667","full_name":"XeroAPI/xero-mcp-server","owner":"XeroAPI","description":"An MCP server that integrates with the MCP protocol. https://modelcontextprotocol.io/introduction","archived":false,"fork":false,"pushed_at":"2025-03-30T21:21:21.000Z","size":105,"stargazers_count":20,"open_issues_count":0,"forks_count":2,"subscribers_count":9,"default_branch":"main","last_synced_at":"2025-03-30T22:25:37.897Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/XeroAPI.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-03-17T02:29:58.000Z","updated_at":"2025-03-30T21:21:23.000Z","dependencies_parsed_at":"2025-03-21T19:30:24.293Z","dependency_job_id":"c6d70e0f-dd36-4eef-b9ce-f15e936be656","html_url":"https://github.com/XeroAPI/xero-mcp-server","commit_stats":null,"previous_names":["xeroapi/xero-mcp-server"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/XeroAPI%2Fxero-mcp-server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/XeroAPI%2Fxero-mcp-server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/XeroAPI%2Fxero-mcp-server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/XeroAPI%2Fxero-mcp-server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/XeroAPI","download_url":"https://codeload.github.com/XeroAPI/xero-mcp-server/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246389462,"owners_count":20769379,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-04-02T13:15:25.028Z","updated_at":"2025-04-02T13:15:46.191Z","avatar_url":"https://github.com/XeroAPI.png","language":"TypeScript","funding_links":[],"categories":["🏢 Enterprise-Supported Implementations","Finance","Finance \u0026 Market Data Mcp Servers","📚 Projects (1974 total)","Production-Ready Servers","پیاده‌سازی‌های سرور","Official Servers","官方 MCP 服务器列表","APIs and HTTP Requests","🌐 Web Development","Finance \u0026 Fintech","🗂️ Extensions by Category","MCP Servers \u0026 Protocol","Table of Contents","Server Implementations"],"sub_categories":["Productivity \u0026 Management","Accounting \u0026 Budgeting","MCP Servers","💰 \u003ca name=\"finance--fintech\"\u003e\u003c/a\u003eمالی و فین‌تک","💰 Finance","Other Tools and Integrations","💰 \u003ca name=\"finance--fintech\"\u003e\u003c/a\u003eFinance \u0026 Fintech"],"readme":"# Xero MCP Server\n\nThis is a Model Context Protocol (MCP) server implementation for Xero. It provides a bridge between the MCP protocol and Xero's API, allowing for standardized access to Xero's accounting and business features.\n\n## Features\n\n- Xero OAuth2 authentication with custom connections\n- Contact management\n- Chart of Accounts management\n- Invoice creation and management\n- MCP protocol compliance\n\n## Prerequisites\n\n- Node.js (v18 or higher)\n- npm or pnpm\n- A Xero developer account with API credentials\n\n### Configuring your Xero Developer account\n\nSet up a Custom Connection following these instructions: https://developer.xero.com/documentation/guides/oauth2/custom-connections/\n\nCurrently the following scopes are required:\n`accounting.transactions accounting.contacts accounting.settings.read`\n\n### Integrating the MCP server with Claude Desktop\n\nTo add the MCP server to Claude go to Settings \u003e Developer \u003e Edit config and add the following to your claude_desktop_config.json file:\n\n```json\n{\n  \"mcpServers\": {\n    \"xero\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"@xeroapi/xero-mcp-server@latest\"],\n      \"env\": {\n        \"XERO_CLIENT_ID\": \"your_client_id_here\",\n        \"XERO_CLIENT_SECRET\": \"your_client_secret_here\"\n      }\n    }\n  }\n}\n```\n\n### Available MCP Commands\n\n- `list-contacts`: Retrieve a list of contacts from Xero\n- `list-invoices`: Retrieve a list of invoices\n- `list-accounts`: Retrieve a list of accounts\n- `list-tax-rates` : Retrieve a list of tax rates\n- `list-quotes` : Retrieve a list of quotes\n- `list-credit-notes`: Retrieve a list of credit notes\n- `create-contact`: Create a new contact\n- `create-invoice`: Create a new invoice\n- `create-quote`: Create a new quote\n- `create-credit-note`: Create a new credit note\n- `update-contact`: Update an existing contact\n- `update-invoice`: Update an existing draft invoice\n\nFor detailed API documentation, please refer to the [MCP Protocol Specification](https://modelcontextprotocol.io/).\n\n## For Developers\n\n### Installation\n\n```bash\n# Using npm\nnpm install\n\n# Using pnpm\npnpm install\n```\n\n### Run a build\n\n```bash\n# Using npm\nnpm run build\n\n# Using pnpm\npnpm build\n```\n\n### Integrating with Claude Desktop\n\nTo add the MCP server to Claude go to Settings \u003e Developer \u003e Edit config and add the following to your claude_desktop_config.json file:\n\n```json\n{\n  \"mcpServers\": {\n    \"xero\": {\n      \"command\": \"node\",\n      \"args\": [\"insert-your-file-path-here/xero-mcp-server/dist/index.js\"],\n      \"env\": {\n        \"XERO_CLIENT_ID\": \"your_client_id_here\",\n        \"XERO_CLIENT_SECRET\": \"your_client_secret_here\"\n      }\n    }\n  }\n}\n```\n\n## License\n\nMIT\n\n## Security\n\nPlease do not commit your `.env` file or any sensitive credentials to version control.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FXeroAPI%2Fxero-mcp-server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FXeroAPI%2Fxero-mcp-server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FXeroAPI%2Fxero-mcp-server/lists"}