Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .github/workflows/mpak-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,21 @@ on:
description: Git ref to scan
required: true
default: main
pull_request:
branches:
- main
push:
branches:
- main

permissions:
contents: read

jobs:
scan:
runs-on: ubuntu-latest
env:
SOURCE_REF: ${{ inputs.source_ref || github.event.pull_request.head.sha || github.sha }}

steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5
Expand All @@ -23,7 +31,7 @@ jobs:
- name: Check out source ref
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5
with:
ref: ${{ inputs.source_ref }}
ref: ${{ env.SOURCE_REF }}
path: source

- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/mpak-validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@ name: mpak Validate

on:
workflow_dispatch:
pull_request:
branches:
- main
push:
branches:
- main

permissions:
contents: read
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Works with Claude Desktop, Cursor, Windsurf, VS Code, Codex, Cline, Glama, and a
| Item | Value |
|------|-------|
| Package | `ipgeolocation-io-mcp` |
| Version | `1.0.16` |
| Version | `1.0.17` |
| Transport | `stdio` |
| Node.js | `>=18` |

Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": "0.3",
"name": "ipgeolocation-io-mcp",
"display_name": "IPGeolocation.io MCP Server",
"version": "1.0.16",
"version": "1.0.17",
"description": "Official MCP server for IP geolocation, IP security, abuse contacts, ASN, timezone, astronomy, and user-agent parsing.",
"long_description": "Official MCP server from ipgeolocation.io. Provides 16 tools for IP geolocation, IP security, abuse contact lookup, ASN data, timezone lookups and conversions, astronomy data, and user-agent parsing. Supports free and paid API plans. Bulk operations use a default cap of 1,000 items per request in this MCP server.",
"author": {
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ipgeolocation-io-mcp",
"version": "1.0.16",
"version": "1.0.17",
"mcpName": "io.github.IPGeolocation/ipgeolocation-io-mcp",
"description": "Official MCP server for IP geolocation, IP security, abuse contacts, ASN, timezone, astronomy, and user-agent parsing.",
"type": "module",
Expand Down
4 changes: 2 additions & 2 deletions server.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "io.github.IPGeolocation/ipgeolocation-io-mcp",
"title": "IPGeolocation.io MCP Server",
"description": "Official MCP server for IP geolocation, security, ASN, abuse, timezone, astronomy, and user-agent.",
"version": "1.0.16",
"version": "1.0.17",
"websiteUrl": "https://github.com/IPGeolocation/ipgeolocation-io-mcp#readme",
"icons": [
{
Expand All @@ -26,7 +26,7 @@
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "ipgeolocation-io-mcp",
"version": "1.0.16",
"version": "1.0.17",
"transport": {
"type": "stdio"
},
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export function createMcpServer(
): McpServer {
const server = new McpServer({
name: "ipgeolocation-io-mcp",
version: "1.0.16",
version: "1.0.17",
}, {
instructions: TOOL_SELECTION_INSTRUCTIONS,
});
Expand Down