{"id":50637715,"url":"https://github.com/frocher/sigovenoi_mcp","last_synced_at":"2026-06-07T04:32:19.725Z","repository":{"id":289092306,"uuid":"969685221","full_name":"frocher/sigovenoi_mcp","owner":"frocher","description":"MCP Server for Sigovenoi project","archived":false,"fork":false,"pushed_at":"2025-04-21T13:13:08.000Z","size":9,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-21T14:34:50.347Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/frocher.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,"zenodo":null}},"created_at":"2025-04-20T17:54:06.000Z","updated_at":"2025-04-21T13:13:11.000Z","dependencies_parsed_at":"2025-04-21T14:34:56.959Z","dependency_job_id":null,"html_url":"https://github.com/frocher/sigovenoi_mcp","commit_stats":null,"previous_names":["frocher/sigovenoi_mcp"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/frocher/sigovenoi_mcp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frocher%2Fsigovenoi_mcp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frocher%2Fsigovenoi_mcp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frocher%2Fsigovenoi_mcp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frocher%2Fsigovenoi_mcp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/frocher","download_url":"https://codeload.github.com/frocher/sigovenoi_mcp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frocher%2Fsigovenoi_mcp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34009201,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-07T02:00:07.652Z","response_time":124,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":"2026-06-07T04:32:18.380Z","updated_at":"2026-06-07T04:32:19.720Z","avatar_url":"https://github.com/frocher.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Sigovenoi MCP\n\nA Model Context Protocol (MCP) server that provides access to coding rules and examples for various themes.\n\n## Features\n\n- Retrieve all available themes\n- Search topics within a specific theme\n- Configurable API endpoint\n- Environment variable support\n\n## Prerequisites\n\n- Node.js (v16 or higher)\n- npm or yarn\n- Cursor, Windsurf, Claude Desktop or another MCP Client\n\n## Getting started\n\n### Install in Cursor\n\nGo to: `Settings` -\u003e `Cursor Settings` -\u003e `MCP` -\u003e `Add new global MCP server`\n\nPasting the following configuration into your Cursor `~/.cursor/mcp.json` file is the recommended approach. See [Cursor MCP docs](https://docs.cursor.com/context/model-context-protocol) for more info.\n\n```json\n{\n  \"mcpServers\": {\n    \"sigovenoi\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"@acmada/sigovenoi_mcp@latest\"]\n    }\n  }\n}\n```\n\n### Install in Windsurf\n\nTODO\n\n### Install in VSCode\n\nTODO\n\n### Install in Claude Desktop\n\nAdd this to your Claude Desktop `claude_desktop_config.json` file. See [Claude Desktop MCP docs](https://modelcontextprotocol.io/quickstart/user) for more info.\n\n```json\n{\n  \"mcpServers\": {\n    \"Context7\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"@acmada/sigovenoi_mcp@latest\"]\n    }\n  }\n}\n```\n\n### Available Tools\n\n#### get-themes\nRetrieves all available themes.\n\n#### search-theme-topics\nSearch topics for a given theme. Parameters:\n- `themeCode`: Theme code to search for topics\n- `query`: (Optional) Search query\n- `tokens`: (Optional) Maximum number of tokens to return\n\n\n## Development\n\n1. Clone the repository:\n```bash\ngit clone https://github.com/yourusername/sigovenoi_mcp.git\ncd sigovenoi_mcp\n```\n\n2. Install dependencies:\n```bash\nnpm install\n```\n\n3. Build\n```bash\nnpm run build\n```\n\n### Configuration\n\nCreate a `.env` file in the root directory with the following variables:\n```env\nAPI_URL=https://www.sigovenoi.com/api/v1\n```\n\nOr provide the URL via command line:\n```bash\nnode dist/index.js --url http://your-api-url\n```\n\n### Local configuration example\n```json\n{\n  \"mcpServers\": {\n    \"sigovenoi\": {\n      \"command\": \"npx\",\n      \"args\": [\"tsx\", \"/path/to/folder/sigovenoi_mcp/src/index.ts\"]\n    }\n  }\n}\n```\n\n### Testing with MCP Inspector\n\n```bash\nnpx -y @modelcontextprotocol/inspector npx @upstash/context7-mcp@latest\n```\n\n\n## License\n\nMIT License - see [LICENSE](LICENSE) for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffrocher%2Fsigovenoi_mcp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffrocher%2Fsigovenoi_mcp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffrocher%2Fsigovenoi_mcp/lists"}